diff options
author | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
---|---|---|
committer | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
commit | 8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch) | |
tree | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/83 | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.gz Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.bz2 Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.zip |
Diffstat (limited to 'Working_Examples/83')
199 files changed, 45451 insertions, 0 deletions
diff --git a/Working_Examples/83/CH1/EX1.1/example_1_1.sce b/Working_Examples/83/CH1/EX1.1/example_1_1.sce new file mode 100755 index 0000000..c0c3072 --- /dev/null +++ b/Working_Examples/83/CH1/EX1.1/example_1_1.sce @@ -0,0 +1,49 @@ +//Chapter 1 +//Example 1.1 +//page 5 +clear;clc; +fl=760e3; +pf=0.8; +lsg=0.05; +csg=60; +depre=0.12; +hpw=48; +lv=32; +hv=30; +pkwhr=0.10; + +md=fl/pf; +printf('Maximum Demand= %.1f kVA \n\n',md/1000); + +//calculation for tariff (b) + +printf('Loss in switchgear=%.2f %% \n\n',lsg*100); +input_demand=md/(1-lsg); +input_demand=input_demand/1000; +cost_sw_ge=input_demand*60; +depreciation=depre*cost_sw_ge; +fixed_charges=hv*input_demand; +running_cost=input_demand*pf*hpw*52*pkwhr;//52 weeks per year +total_b=depreciation + fixed_charges + running_cost; +printf('Input Demand= %.1f kVA \n\n',input_demand); +printf('Cost of switchgear=Rs %d\n\n',cost_sw_ge); +printf('Annual charges on depreciation=Rs %d \n\n',depreciation); +printf('Annual fixed charges due to maximum demand corresponding to triff(b)=Rs %d \n\n',fixed_charges); +printf('Annual running cost due to kWh consumed=Rs %d \n\n',running_cost); +printf('Total charges/annum for tariff(b) = Rs %d\n\n',total_b) + +//calculation for tariff (a) +input_demand=md; +input_demand=input_demand/1000; +fixed_charges=lv*input_demand; +running_cost=input_demand*pf*hpw*52*pkwhr; +total_a=fixed_charges + running_cost; +printf('maximum demand corresponding to tariff(a) = %.f kVA \n\n',input_demand); +printf('Annual fixed charges=Rs %d \n\n',fixed_charges); +printf('Annual running charges for kWh consumed = Rs %d \n\n',running_cost); +printf('Total charges/annum for tariff(a) = Rs %d \n\n',total_a); +if(total_a > total_b) + printf('Therefore, tariff(b) is economical\n\n\n'); +else + printf('Therefore, tariff(a) is economical\n\n\n'); +
\ No newline at end of file diff --git a/Working_Examples/83/CH1/EX1.1/result_example_1_1.txt b/Working_Examples/83/CH1/EX1.1/result_example_1_1.txt new file mode 100755 index 0000000..ba5c666 --- /dev/null +++ b/Working_Examples/83/CH1/EX1.1/result_example_1_1.txt @@ -0,0 +1,26 @@ + +Maximum Demand= 950.0 kVA + +Loss in switchgear=5.00 % + +Input Demand= 1000.0 kVA + +Cost of switchgear=Rs 60000 + +Annual charges on depreciation=Rs 7200 + +Annual fixed charges due to maximum demand corresponding to triff(b)=Rs 30000 + +Annual running cost due to kWh consumed=Rs 199680 + +Total charges/annum for tariff(b) = Rs 236880 + +maximum demand corresponding to tariff(a) = 950 kVA + +Annual fixed charges=Rs 30400 + +Annual running charges for kWh consumed = Rs 189696 + +Total charges/annum for tariff(a) = Rs 220096 + +Therefore, tariff(a) is economical diff --git a/Working_Examples/83/CH1/EX1.3/example_1_3.sce b/Working_Examples/83/CH1/EX1.3/example_1_3.sce new file mode 100755 index 0000000..07632e5 --- /dev/null +++ b/Working_Examples/83/CH1/EX1.3/example_1_3.sce @@ -0,0 +1,23 @@ +//Chapter 1 +//Example 1.3 +//page 7 +clear;clc; +md=25; +lf=0.6; +pcf=0.5; +puf=0.72; + +avg_demand=lf*md; +installed_capacity=avg_demand/pcf; +reserve=installed_capacity-md; +daily_ener=avg_demand*24; +ener_inst_capa=installed_capacity*24; +max_energy=daily_ener/puf; + +printf('Average Demand= %.2f MW \n\n',avg_demand); +printf('Installed capacity= %.2f MW \n\n\',installed_capacity); +printf('Reserve capacity of the plant= %.2f MW \n\n',reserve); +printf('Daily energy produced= %d MWh \n\n',daily_ener); +printf('Energy corresponding to installed capacity per day= %d MWh \n\n',ener_inst_capa); +printf('Maximum energy that could be produced = %d MWh/day \n\n',max_energy); + diff --git a/Working_Examples/83/CH1/EX1.3/result_example_1_3.txt b/Working_Examples/83/CH1/EX1.3/result_example_1_3.txt new file mode 100755 index 0000000..e49091d --- /dev/null +++ b/Working_Examples/83/CH1/EX1.3/result_example_1_3.txt @@ -0,0 +1,13 @@ + +Average Demand= 15.00 MW + +Installed capacity= 30.00 MW + +Reserve capacity of the plant= 5.00 MW + +Daily energy produced= 360 MWh + +Energy corresponding to installed capacity per day= 720 MWh + +Maximum energy that could be produced = 500 MWh/day + diff --git a/Working_Examples/83/CH1/EX1.4/example_1_4.sce b/Working_Examples/83/CH1/EX1.4/example_1_4.sce new file mode 100755 index 0000000..9b05014 --- /dev/null +++ b/Working_Examples/83/CH1/EX1.4/example_1_4.sce @@ -0,0 +1,32 @@ +//Chapter 1 +//Example 1.2 +//page 6 +clear;clc; +md=20e3; +unit_1=14e3; +unit_2=10e3; +ener_1=1e8; +ener_2=7.5e6; +unit1_time=1; +unit2_time=0.45; + +annual_lf_unit1=ener_1/(unit_1*24*365); +md_unit_2=md-unit_1; +annual_lf_unit2=ener_2/(md_unit_2*24*365); +lf_unit_2=ener_2/(md_unit_2*unit2_time*24*365); +unit1_cf=annual_lf_unit1; +unit1_puf=unit1_cf; +unit2_cf=ener_2/(unit_2*24*365); +unit2_puf=unit2_cf/unit2_time; +annual_lf=(ener_1+ener_2)/(md*24*365); + + +printf('Annual load factor for Unit 1 = %.2f %% \n\n',annual_lf_unit1*100); +printf('The maximum demand on Unit 2 is %d MW \n\n',md_unit_2/1000); +printf('Annual load factor for Unit 2 = %.2f %% \n\n',annual_lf_unit2*100); +printf('Load factor of Unit 2 for the time it takes the load= %.2f %% \n\n',lf_unit_2*100); +printf('Plant capacity factor of unit 1 = %.2f %% \n\n',unit1_cf*100); +printf('Plant use factor of unit 1 = %.2f %% \n\n',unit1_puf*100); +printf('Annual plant capacity factor of unit 2 = %.2f %% \n\n',unit2_cf*100); +printf('Plant use factor of unit 2 = %.2f %% \n\n',unit2_puf*100); +printf('The annual load factor of the total plant = %.2f %% \n\n',annual_lf*100); diff --git a/Working_Examples/83/CH1/EX1.4/result_example_1_4.txt b/Working_Examples/83/CH1/EX1.4/result_example_1_4.txt new file mode 100755 index 0000000..b735190 --- /dev/null +++ b/Working_Examples/83/CH1/EX1.4/result_example_1_4.txt @@ -0,0 +1,20 @@ + + +Annual load factor for Unit 1 = 81.54 % + +The maximum demand on Unit 2 is 6 MW + +Annual load factor for Unit 2 = 14.27 % + +Load factor of Unit 2 for the time it takes the load= 31.71 % + +Plant capacity factor of unit 1 = 81.54 % + +Plant use factor of unit 1 = 81.54 % + +Annual plant capacity factor of unit 2 = 8.56 % + +Plant use factor of unit 2 = 19.03 % + +The annual load factor of the total plant = 61.36 % + diff --git a/Working_Examples/83/CH1/EX1.5/example_1_5.sce b/Working_Examples/83/CH1/EX1.5/example_1_5.sce new file mode 100755 index 0000000..5afcf5d --- /dev/null +++ b/Working_Examples/83/CH1/EX1.5/example_1_5.sce @@ -0,0 +1,30 @@ +//Chapter 1 +//Example 1.2 +//page 6 +clear;clc; + +c1_md_6pm=5; c1_d_7pm=3; c1_lf=0.2; +c2_md_11am=5; c2_d_7pm=2; c2_avg_load=1.2; +c3_md_7pm=3; c3_avg_load=1; + +md_system=c1_d_7pm + c2_d_7pm + c3_md_7pm; +sum_mds=c1_md_6pm + c2_md_11am + c3_md_7pm; +df=sum_mds/md_system; + +printf('Maximum demand of the system is %d kW at 7p.m \n',md_system); +printf('Sum of the individual maximum demands = %d kW \n',sum_mds); +printf('Diversity factor= %.3f \n\n',df); + +c1_avg_load=c1_md_6pm*c1_lf; +c2_lf=c2_avg_load/c2_md_11am; +c3_lf=c3_avg_load/c3_md_7pm; + +printf('Consumer1 -->\t Avg_load= %.2f kW \t LF= %.1f %% \n',c1_avg_load,c1_lf*100); +printf('Consumer2 -->\t Avg_load= %.2f kW \t LF= %.1f %% \n',c2_avg_load,c2_lf*100); +printf('Consumer3 -->\t Avg_load= %.2f kW \t LF= %.1f %% \n\n',c3_avg_load,c3_lf*100); + +avg_load=c1_avg_load + c2_avg_load + c3_avg_load; +lf=avg_load/md_system; + +printf('Combined average load = %.1f kW \n',avg_load); +printf('Combined load factor= %.1f %% \n\n',lf*100); diff --git a/Working_Examples/83/CH1/EX1.5/result_example_1_5.txt b/Working_Examples/83/CH1/EX1.5/result_example_1_5.txt new file mode 100755 index 0000000..b00121a --- /dev/null +++ b/Working_Examples/83/CH1/EX1.5/result_example_1_5.txt @@ -0,0 +1,12 @@ + +Maximum demand of the system is 8 kW at 7p.m +Sum of the individual maximum demands = 13 kW +Diversity factor= 1.625 + +Consumer1 --> Avg_load= 1.00 kW LF= 20.0 % +Consumer2 --> Avg_load= 1.20 kW LF= 24.0 % +Consumer3 --> Avg_load= 1.00 kW LF= 33.3 % + +Combined average load = 3.2 kW +Combined load factor= 40.0 % + diff --git a/Working_Examples/83/CH10/EX10.1/example_10_1.sce b/Working_Examples/83/CH10/EX10.1/example_10_1.sce new file mode 100755 index 0000000..5d84bb3 --- /dev/null +++ b/Working_Examples/83/CH10/EX10.1/example_10_1.sce @@ -0,0 +1,83 @@ +//Chapter 10 +//Example 10.1 +//page 374 +//To calculate symmetrical components of line currents +clear;clc; +Ia=10*(cosd(30)+%i*sind(30)); +Ib=15*(cosd(-60)+%i*sind(-60)); +// from KCL Ia+Ib+Ic=0 +Ic=-(Ia+Ib); +//defining alpha(a) +a=cosd(120)+(%i*sind(120)); +Ip=[Ia;Ib;Ic]; +A=[1 1 1;a^2 a 1;a a^2 1]; +IA=inv(A)*Ip; +IB=diag([a^2,a,1])*IA; +IC=diag([a,a^2,1])*IA; + +function [r,theta]=phasorform(x) + r=abs(x); + theta=atand(imag(x),real(x)); +endfunction + +[IAr,IAth]=phasorform(IA); +[IBr,IBth]=phasorform(IB); +[ICr,ICth]=phasorform(IC); + +//to display the results of symettrical components of line currents + +printf('\n\nIA1=%0.2f @ %d deg A',IAr(1,1),IAth(1,1)); +printf('\nIA2=%0.2f @ %d deg A',IAr(2,1),IAth(2,1)); +printf('\nIA0=%0.2f A',IAr(3,1)); + + +printf('\n\nIB1=%0.2f @ %d deg A',IBr(1,1),IBth(1,1)); +printf('\nIB2=%0.2f @ %d deg A',IBr(2,1),IBth(2,1)); +printf('\nIB0=%0.2f A',IBr(3,1)); + + +printf('\n\nIC1=%0.2f @ %d deg A',ICr(1,1),ICth(1,1)); +printf('\nIC2=%0.2f @ %d deg A',ICr(2,1),ICth(2,1)); +printf('\nIC0=%0.2f A',ICr(3,1)); + +//to calculate Delta currents + +IAB=(Ia-Ib)/3; +IBC=(Ib-Ic)/3; +ICA=(Ic-Ia)/3; + +//to get the results in phasor notation +[IABr,IABth]=phasorform(IAB); +[IBCr,IBCth]=phasorform(IBC); +[ICAr,ICAth]=phasorform(ICA); + +printf('\n\nIAB=%0.2f @ %d deg A',IABr,IABth); +printf('\nIBC=%0.2f @ %d deg A',IBCr,IBCth); +printf('\nICA=%0.2f @ %d deg A',ICAr,ICAth); + +//to calculte the symmetrical components of delta currents by reusing the variable Ip +Ip=[IAB;IBC;ICA]; +IAB=inv(A)*Ip; +IBC=diag([a^2,a,1])*IAB; +ICA=diag([a,a^2,1])*IAB; + +[IABr,IABth]=phasorform(IAB); +[IBCr,IBCth]=phasorform(IBC); +[ICAr,ICAth]=phasorform(ICA); + +//to display the results of symmetrical components of Delta currents + +printf('\n\nIAB1=%0.2f @ %d deg A',IABr(1,1),IABth(1,1)); +printf('\nIAB2=%0.2f @ %d deg A',IABr(2,1),IABth(2,1)); +printf('\nIAB0=%0.2f A',IABr(3,1)); + + +printf('\n\nIBC1=%0.2f @ %d deg A',IBCr(1,1),IBCth(1,1)); +printf('\nIBC2=%0.2f @ %d deg A',IBCr(2,1),IBCth(2,1)); +printf('\nIBC0=%0.2f A',IBCr(3,1)); + + +printf('\n\nICA1=%0.2f @ %d deg A',ICAr(1,1),ICAth(1,1)); +printf('\nICA2=%0.2f @ %d deg A',ICAr(2,1),ICAth(2,1)); +printf('\nICA0=%0.2f A\n\n',ICAr(3,1)); + diff --git a/Working_Examples/83/CH10/EX10.1/result_exapmle_10_1.txt b/Working_Examples/83/CH10/EX10.1/result_exapmle_10_1.txt new file mode 100755 index 0000000..e17817b --- /dev/null +++ b/Working_Examples/83/CH10/EX10.1/result_exapmle_10_1.txt @@ -0,0 +1,33 @@ + + + +IA1=13.96 @ 41 deg A +IA2=4.66 @ -111 deg A +IA0=0.00 A + +IB1=13.96 @ -78 deg A +IB2=4.66 @ 8 deg A +IB0=0.00 A + +IC1=13.96 @ 161 deg A +IC2=4.66 @ 128 deg A +IC0=0.00 A + +IAB=6.01 @ 86 deg A +IBC=10.54 @ -41 deg A +ICA=8.33 @ 173 deg A + +IAB1=8.06 @ 71 deg A +IAB2=2.69 @ -141 deg A +IAB0=0.00 A + +IBC1=8.06 @ -48 deg A +IBC2=2.69 @ -21 deg A +IBC0=0.00 A + +ICA1=8.06 @ -168 deg A +ICA2=2.69 @ 98 deg A +ICA0=0.00 A + + + diff --git a/Working_Examples/83/CH10/EX10.2/example_10_2.sce b/Working_Examples/83/CH10/EX10.2/example_10_2.sce new file mode 100755 index 0000000..0d1834e --- /dev/null +++ b/Working_Examples/83/CH10/EX10.2/example_10_2.sce @@ -0,0 +1,42 @@ +//Chapter 10 +//Example 10.2 +//page no 390 +//To draw sequence networks of the system +clear;clc; + +//selecting generator rating as base in generator circuit + +mvab=25; +kvGb=11; //base voltage for generator +kvTLb=kvGb*(121/10.8); //base voltage for TL +kvMb=kvTLb*(10.8/121); //base voltage for motors + +xG=%i*0.2; +xT=%i*0.1; +xTL=100; +xM=%i*0.25; + +mvaG=25; +mvaT=30; +mvaM1=15; +mvaM2=7.5; + +kvM=10; + +//converting all the reactances to PUs + +xT=xT*(mvab/mvaT)*(10.8/kvGb)^2; +xTL=xTL*(mvab/(kvTLb)^2); +xM1=xM*(mvab/mvaM1)*(kvM/kvMb)^2; +xM2=xM*(mvab/mvaM2)*(kvM/kvMb)^2; + +//displaying the results + +printf('\n\nTransmission line voltage base = %0.1f kV',kvTLb); +printf('\n\Motor voltage base = %d kV',kvMb); +printf('\n\nTransformer reactance = %0.4f pu',abs(imag(xT))); +printf('\nLine reactance = %0.3f pu',abs(xTL)); +printf('\nReactance of motor 1 = %0.3f pu',abs(imag(xM1))); +printf('\nReactance of motor 2 = %0.3f pu\n\n',abs(imag(xM2))); + +disp('Positive and Negative sequence diagram has been drawn using XCOS,simulation has not been done as it is not being asked in the problem'); diff --git a/Working_Examples/83/CH10/EX10.2/result_example_10_2.txt b/Working_Examples/83/CH10/EX10.2/result_example_10_2.txt new file mode 100755 index 0000000..ade8b84 --- /dev/null +++ b/Working_Examples/83/CH10/EX10.2/result_example_10_2.txt @@ -0,0 +1,17 @@ + + + +Transmission line voltage base = 123.2 kV +Motor voltage base = 11 kV + +Transformer reactance = 0.0803 pu +Line reactance = 0.165 pu +Reactance of motor 1 = 0.344 pu +Reactance of motor 2 = 0.689 pu + + + Positive and Negative sequence diagram has been drawn using XCO + S,simulation has not been done as it is not being asked in + the problem + + diff --git a/Working_Examples/83/CH10/EX10.3/example_10_3.sce b/Working_Examples/83/CH10/EX10.3/example_10_3.sce new file mode 100755 index 0000000..1a32d15 --- /dev/null +++ b/Working_Examples/83/CH10/EX10.3/example_10_3.sce @@ -0,0 +1,7 @@ +//Chapter 10 +//Example 10.3 +//page no 392 +//To draw the zero sequence networks of the system +clear;clc; + +disp('Zero sequence diagram has been drawn using XCOS,simulation has not been done as it is not being asked in the problem');
\ No newline at end of file diff --git a/Working_Examples/83/CH10/EX10.3/example_10_3.zcos b/Working_Examples/83/CH10/EX10.3/example_10_3.zcos new file mode 100755 index 0000000..4a20558 --- /dev/null +++ b/Working_Examples/83/CH10/EX10.3/example_10_3.zcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1"><!--Xcos - 1.0 - scilab-5.3.2 - 20110511 1835--><mxGraphModel as="model"><root><mxCell id="-46a41603:1313306f260:-7c09"/><mxCell id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-7c01" interfaceFunctionName="Resistor" parent="-46a41603:1313306f260:-7c0a" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;rotation=90"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.01"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.01"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="260.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7c00" ordering="1" parent="-46a41603:1313306f260:-7c01" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7bff" ordering="1" parent="-46a41603:1313306f260:-7c01" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-7bfe" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-7c0a" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00001"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="370.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7bfd" ordering="1" parent="-46a41603:1313306f260:-7bfe" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7bfc" ordering="1" parent="-46a41603:1313306f260:-7bfe" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitLink id="-46a41603:1313306f260:-7bf5"><mxGeometry as="geometry" x="10.0" y="10.0"><mxPoint as="sourcePoint" x="150.0" y="336.0"/><mxPoint as="targetPoint" x="145.59322033898306" y="306.6101694915254"/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7c00" ordering="1" parent="-46a41603:1313306f260:-7c01" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7bfc" ordering="1" parent="-46a41603:1313306f260:-7bfe" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-7bf4" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="217.0" y="437.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7bf3" ordering="1" parent="-46a41603:1313306f260:-7bf4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7bf2" ordering="1" parent="-46a41603:1313306f260:-7bf4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7bf1" ordering="2" parent="-46a41603:1313306f260:-7bf4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7bf0"><mxGeometry as="geometry" x="10.0" y="30.0"><Array as="points" scilabClass=""><mxPoint x="150.0" y="440.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7bfd" ordering="1" parent="-46a41603:1313306f260:-7bfe" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7bf3" ordering="1" parent="-46a41603:1313306f260:-7bf4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-7b75" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-7c0a" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00001"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="720.0" y="350.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7b74" ordering="1" parent="-46a41603:1313306f260:-7b75" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7b73" ordering="1" parent="-46a41603:1313306f260:-7b75" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-46a41603:1313306f260:-7b72" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="667.0" y="437.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7b71" ordering="1" parent="-46a41603:1313306f260:-7b72" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7b70" ordering="1" parent="-46a41603:1313306f260:-7b72" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7b6f" ordering="2" parent="-46a41603:1313306f260:-7b72" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7b6e"><mxGeometry as="geometry" x="52.0" y="30.0"><Array as="points" scilabClass=""><mxPoint x="740.0" y="440.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7b74" ordering="1" parent="-46a41603:1313306f260:-7b75" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitOutputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7b70" ordering="1" parent="-46a41603:1313306f260:-7b72" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-7af9" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="627.0" y="197.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7af8" ordering="1" parent="-46a41603:1313306f260:-7af9" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7af7" ordering="2" parent="-46a41603:1313306f260:-7af9" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7af6" ordering="1" parent="-46a41603:1313306f260:-7af9" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-46a41603:1313306f260:-7af5"><mxGeometry as="geometry" x="20.0" y="20.0"><mxPoint as="sourcePoint" x="740.0" y="216.0"/><mxPoint as="targetPoint" x="740.0" y="214.0"/><Array as="points" scilabClass=""><mxPoint x="740.0" y="200.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7af7" ordering="2" parent="-46a41603:1313306f260:-7af9" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort></ImplicitLink><TextBlock id="-46a41603:1313306f260:-7af4" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#DB1717" value="<html> <head> <style type="text/css"> <!-- body { color: #DB1717; font-family: Arial,Helvetica; font-weight: bold; font-size: 14 pt } --> </style> </head> <body> Reference Bus </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="414.0" y="170.0"/></TextBlock><BasicBlock dependsOnU="1" id="-46a41603:1313306f260:-7af3" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-7c0a" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00001"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="314.0" y="420.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7af2" ordering="1" parent="-46a41603:1313306f260:-7af3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7af1" ordering="1" parent="-46a41603:1313306f260:-7af3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-46a41603:1313306f260:-7af0" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-7c0a" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00001"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="544.0" y="420.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aef" ordering="1" parent="-46a41603:1313306f260:-7af0" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aee" ordering="1" parent="-46a41603:1313306f260:-7af0" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-46a41603:1313306f260:-7aed" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-7c0a" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00001"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="444.0" y="420.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aec" ordering="1" parent="-46a41603:1313306f260:-7aed" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aeb" ordering="1" parent="-46a41603:1313306f260:-7aed" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitLink id="-46a41603:1313306f260:-7aea"><mxGeometry as="geometry" x="4.0" y="20.0"><mxPoint as="sourcePoint" x="358.0" y="440.0"/><mxPoint as="targetPoint" x="441.5" y="436.6666666666667"/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7af2" ordering="1" parent="-46a41603:1313306f260:-7af3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aeb" ordering="1" parent="-46a41603:1313306f260:-7aed" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-7ae9"><mxGeometry as="geometry" x="4.0" y="20.0"><mxPoint as="sourcePoint" x="487.99999999999994" y="440.0"/><mxPoint as="targetPoint" x="538.7222222222223" y="443.61111111111114"/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aec" ordering="1" parent="-46a41603:1313306f260:-7aed" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aee" ordering="1" parent="-46a41603:1313306f260:-7af0" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-7ae8" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="627.0" y="197.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae7" ordering="1" parent="-46a41603:1313306f260:-7ae8" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae6" ordering="1" parent="-46a41603:1313306f260:-7ae8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae5" ordering="2" parent="-46a41603:1313306f260:-7ae8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7ae4"><mxGeometry as="geometry" x="4.0" y="10.0"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae6" ordering="1" parent="-46a41603:1313306f260:-7ae8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7af6" ordering="1" parent="-46a41603:1313306f260:-7af9" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-7ae3" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="627.0" y="197.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae2" ordering="1" parent="-46a41603:1313306f260:-7ae3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae1" ordering="1" parent="-46a41603:1313306f260:-7ae3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae0" ordering="2" parent="-46a41603:1313306f260:-7ae3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7adf"><mxGeometry as="geometry" x="4.0" y="10.0"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae5" ordering="2" parent="-46a41603:1313306f260:-7ae8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae2" ordering="1" parent="-46a41603:1313306f260:-7ae3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-7add"><mxGeometry as="geometry" x="4.0" y="10.0"><mxPoint as="sourcePoint" x="588.0" y="440.0"/><mxPoint as="targetPoint" x="619.3846153846154" y="199.3491124260355"/><Array as="points" scilabClass=""><mxPoint x="630.0" y="440.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7aef" ordering="1" parent="-46a41603:1313306f260:-7af0" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitOutputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae0" ordering="2" parent="-46a41603:1313306f260:-7ae3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-7a58" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="267.0" y="197.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7a57" ordering="1" parent="-46a41603:1313306f260:-7a58" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7a56" ordering="1" parent="-46a41603:1313306f260:-7a58" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7a55" ordering="2" parent="-46a41603:1313306f260:-7a58" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7a54"><mxGeometry as="geometry"><Array as="points" scilabClass=""><mxPoint x="270.2721893491124" y="199.3491124260355"/><mxPoint x="270.2721893491124" y="199.3491124260355"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7ae1" ordering="1" parent="-46a41603:1313306f260:-7ae3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7a57" ordering="1" parent="-46a41603:1313306f260:-7a58" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-7a53"><mxGeometry as="geometry"><Array as="points" scilabClass=""><mxPoint x="270.0" y="440.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7a56" ordering="1" parent="-46a41603:1313306f260:-7a58" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7af1" ordering="1" parent="-46a41603:1313306f260:-7af3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-7a59"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="150.0" y="256.0"/><mxPoint as="targetPoint" x="270.5882352941177" y="200.0"/><Array as="points" scilabClass=""><mxPoint x="150.0" y="200.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7a55" ordering="2" parent="-46a41603:1313306f260:-7a58" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7bff" ordering="1" parent="-46a41603:1313306f260:-7c01" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></ImplicitLink><TextBlock id="-46a41603:1313306f260:-7996" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 23 pt } --> </style> </head> <body> 3Zn </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="90.0" y="260.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-7993" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 23 pt } --> </style> </head> <body> Z0g1 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="90.0" y="370.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-798e" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> ZT1 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="310.0" y="460.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-798a" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> Z0(line) </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="440.0" y="460.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-7987" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> ZT2 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="460.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-7983" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> Z0g2 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="770.0" y="350.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-797f" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> M </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="200.0" y="440.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-797c" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> V </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="650.0" y="400.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-797b" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> U </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="490.0" y="410.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-797a" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> N </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="410.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-7970" parent="-46a41603:1313306f260:-7c0a" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#3885C1" value="<html> <head> <style type="text/css"> <!-- body { color: #3885C1; font-family: Arial,Helvetica; font-weight: bold; font-size: 16 pt } --> </style> </head> <body> Zero sequence network of the system presented in Fig.10.25 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="490.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="-46a41603:1313306f260:-7c0a" parent="-46a41603:1313306f260:-7c09"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH10/EX10.3/result_example_10_3.txt b/Working_Examples/83/CH10/EX10.3/result_example_10_3.txt new file mode 100755 index 0000000..5528163 --- /dev/null +++ b/Working_Examples/83/CH10/EX10.3/result_example_10_3.txt @@ -0,0 +1,5 @@ + + + Zero sequence diagram has been drawn using XCOS,simulation has + not been done as it is not being asked in the problem + diff --git a/Working_Examples/83/CH10/EX10.4/example_10_4.sce b/Working_Examples/83/CH10/EX10.4/example_10_4.sce new file mode 100755 index 0000000..33f6f06 --- /dev/null +++ b/Working_Examples/83/CH10/EX10.4/example_10_4.sce @@ -0,0 +1,33 @@ +//Chapter 10 +//Example 10.4 +//page no 392 +//To draw the zero sequence networks of the system given in example 10.2 +clear;clc; + +//selecting generator rating as base in generator circuit + +mvab=25; +kvGb=11; //base voltage for generator +kvTLb=kvGb*(121/10.8); //base voltage for TL +kvMb=kvTLb*(10.8/121); //base voltage for motors + +//Calculation of zero sequence reactance + +xT0=0.0805; //zero sequence reactance of transformer +xG0=0.06; //zero sequence reactance of generator + +//zero sequence reactanc eof motors +xM1_0=0.06*(mvab/15)*(10/kvMb)^2; +xM2_0=0.06*(mvab/7.5)*(10/kvMb)^2; + +x_clr_0=3*2.5*(mvab/kvGb^2); // Reactance of current limiting reactors to be icluded in the zero sequence network +x_TL_0=300*(mvab/kvTLb^2); //Zero sequence reactance of TL + +printf('\n\nTransformer zero sequence reactance = %0.4f pu',xT0); +printf('\nGenerator zero sequence reactances = %0.2f pu',xG0); +printf('\nZero sequence reactance of motor 1 = %0.3f pu',xM1_0); +printf('\nZero sequence reactance of motor 2 = %0.3f pu',xM2_0); +printf('\nReactance of current limiting reactors = %0.3f pu',x_clr_0); +printf('\nZero sequence reactance of transmission line = %0.3f pu\n\n',x_TL_0); + +disp('Zero sequence diagram has been drawn using XCOS,simulation has not been done as it is not being asked in the problem');
\ No newline at end of file diff --git a/Working_Examples/83/CH10/EX10.4/example_10_4.zcos b/Working_Examples/83/CH10/EX10.4/example_10_4.zcos new file mode 100755 index 0000000..681772e --- /dev/null +++ b/Working_Examples/83/CH10/EX10.4/example_10_4.zcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" title="example_10_4"><!--Xcos - 1.0 - scilab-5.3.2 - 20110511 1835--><mxGraphModel as="model"><root><mxCell id="-46a41603:1313306f260:-791e"/><mxCell id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-791a" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.000019098593"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="1.9098593E-5"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.9098593E-5"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="380.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787a" ordering="1" parent="-46a41603:1313306f260:-791a" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787b" ordering="1" parent="-46a41603:1313306f260:-791a" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-46a41603:1313306f260:-7916" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="227.0" y="447.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7915" ordering="1" parent="-46a41603:1313306f260:-7916" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7914" ordering="1" parent="-46a41603:1313306f260:-7916" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7913" ordering="2" parent="-46a41603:1313306f260:-7916" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7912"><mxGeometry as="geometry" x="20.0" y="40.0"><Array as="points" scilabClass=""><mxPoint x="160.0" y="450.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787a" ordering="1" parent="-46a41603:1313306f260:-791a" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7915" ordering="1" parent="-46a41603:1313306f260:-7916" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-7911" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0002610141"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.610141E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.610141E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="710.0" y="360.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7866" ordering="1" parent="-46a41603:1313306f260:-7911" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7867" ordering="1" parent="-46a41603:1313306f260:-7911" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-46a41603:1313306f260:-790e" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="SPLIT_f;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="837.0" y="447.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-790d" ordering="1" parent="-46a41603:1313306f260:-790e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-790c" ordering="1" parent="-46a41603:1313306f260:-790e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-790b" ordering="2" parent="-46a41603:1313306f260:-790e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><SplitBlock id="-46a41603:1313306f260:-7909" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="637.0" y="207.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7908" ordering="1" parent="-46a41603:1313306f260:-7909" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7907" ordering="2" parent="-46a41603:1313306f260:-7909" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7906" ordering="1" parent="-46a41603:1313306f260:-7909" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><TextBlock id="-46a41603:1313306f260:-7904" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#DB1717" value="<html> <head> <style type="text/css"> <!-- body { color: #DB1717; font-family: Arial,Helvetica; font-weight: bold; font-size: 14 pt } --> </style> </head> <body> Reference Bus </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="424.0" y="180.0"/></TextBlock><BasicBlock dependsOnU="1" id="-46a41603:1313306f260:-7903" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00025623945"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.5623945E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.5623945E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="324.0" y="430.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7876" ordering="1" parent="-46a41603:1313306f260:-7903" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7877" ordering="1" parent="-46a41603:1313306f260:-7903" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-46a41603:1313306f260:-7900" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00025623945"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.5623945E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.5623945E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="554.0" y="430.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786e" ordering="1" parent="-46a41603:1313306f260:-7900" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786f" ordering="1" parent="-46a41603:1313306f260:-7900" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-46a41603:1313306f260:-78fd" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0015724508"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0015724508"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0015724508"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="454.0" y="430.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786a" ordering="1" parent="-46a41603:1313306f260:-78fd" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786b" ordering="1" parent="-46a41603:1313306f260:-78fd" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitLink id="-46a41603:1313306f260:-78fa"><mxGeometry as="geometry" x="14.0" y="30.0"><mxPoint as="sourcePoint" x="368.0" y="450.0"/><mxPoint as="targetPoint" x="451.5" y="446.6666666666667"/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7876" ordering="1" parent="-46a41603:1313306f260:-7903" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786b" ordering="1" parent="-46a41603:1313306f260:-78fd" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-78f9"><mxGeometry as="geometry" x="14.0" y="30.0"><mxPoint as="sourcePoint" x="497.99999999999994" y="450.0"/><mxPoint as="targetPoint" x="548.7222222222223" y="453.61111111111114"/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786a" ordering="1" parent="-46a41603:1313306f260:-78fd" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786f" ordering="1" parent="-46a41603:1313306f260:-7900" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-78f8" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="637.0" y="207.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f7" ordering="1" parent="-46a41603:1313306f260:-78f8" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f6" ordering="1" parent="-46a41603:1313306f260:-78f8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f5" ordering="2" parent="-46a41603:1313306f260:-78f8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-78f4"><mxGeometry as="geometry" x="14.0" y="20.0"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f6" ordering="1" parent="-46a41603:1313306f260:-78f8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7906" ordering="1" parent="-46a41603:1313306f260:-7909" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-78f3" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="637.0" y="207.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f2" ordering="1" parent="-46a41603:1313306f260:-78f3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f1" ordering="1" parent="-46a41603:1313306f260:-78f3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f0" ordering="2" parent="-46a41603:1313306f260:-78f3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-78ef"><mxGeometry as="geometry" x="14.0" y="20.0"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f5" ordering="2" parent="-46a41603:1313306f260:-78f8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f2" ordering="1" parent="-46a41603:1313306f260:-78f3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><TextBlock id="-46a41603:1313306f260:-78e5" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j0.06 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="90.0" y="380.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78e4" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j0.0805 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="320.0" y="470.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78e3" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j0.494 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="470.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78e2" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j0.0805 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="550.0" y="470.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78e1" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j0.082 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="760.0" y="360.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78e0" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> d </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="210.0" y="450.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78df" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> g </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="690.0" y="450.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78de" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> f </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="500.0" y="420.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78dd" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> e </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="390.0" y="420.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-78dc" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#3885C1" value="<html> <head> <style type="text/css"> <!-- body { color: #3885C1; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> Zero sequence network of Example 10.5 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="460.0" y="500.0"/></TextBlock><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-78da" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.004927437"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.004927437"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.004927437"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="270.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787e" ordering="1" parent="-46a41603:1313306f260:-78da" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787f" ordering="1" parent="-46a41603:1313306f260:-78da" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-46a41603:1313306f260:-78d6" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="277.0" y="207.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78d5" ordering="1" parent="-46a41603:1313306f260:-78d6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78d4" ordering="1" parent="-46a41603:1313306f260:-78d6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78d3" ordering="2" parent="-46a41603:1313306f260:-78d6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-78d2"><mxGeometry as="geometry"><Array as="points" scilabClass=""><mxPoint x="280.2721893491124" y="209.3491124260355"/><mxPoint x="280.2721893491124" y="209.3491124260355"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f1" ordering="1" parent="-46a41603:1313306f260:-78f3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78d5" ordering="1" parent="-46a41603:1313306f260:-78d6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-78d1"><mxGeometry as="geometry"><Array as="points" scilabClass=""><mxPoint x="280.0" y="450.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78d4" ordering="1" parent="-46a41603:1313306f260:-78d6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7877" ordering="1" parent="-46a41603:1313306f260:-7903" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-78d7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="160.0" y="266.0"/><mxPoint as="targetPoint" x="280.0" y="210.0"/><Array as="points" scilabClass=""><mxPoint x="160.0" y="210.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78d3" ordering="2" parent="-46a41603:1313306f260:-78d6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787f" ordering="1" parent="-46a41603:1313306f260:-78da" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-78d0"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="160.0" y="314.0"/><mxPoint as="targetPoint" x="160.0" y="380.0"/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787e" ordering="1" parent="-46a41603:1313306f260:-78da" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-787b" ordering="1" parent="-46a41603:1313306f260:-791a" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-78a8" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00052202821"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="5.2202821E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.2202821E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="820.0" y="350.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7862" ordering="1" parent="-46a41603:1313306f260:-78a8" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7863" ordering="1" parent="-46a41603:1313306f260:-78a8" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="-46a41603:1313306f260:-78a5" interfaceFunctionName="Inductor" parent="-46a41603:1313306f260:-791f" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.004927437"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.004927437"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.004927437"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="820.0" y="260.0"/></BasicBlock><ImplicitOutputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-785e" ordering="1" parent="-46a41603:1313306f260:-78a5" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-785f" ordering="1" parent="-46a41603:1313306f260:-78a5" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-46a41603:1313306f260:-789b" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="637.0" y="207.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-789a" ordering="1" parent="-46a41603:1313306f260:-789b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7899" ordering="1" parent="-46a41603:1313306f260:-789b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7898" ordering="2" parent="-46a41603:1313306f260:-789b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7897"><mxGeometry as="geometry"><Array as="points" scilabClass=""><mxPoint x="640.0" y="450.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-786e" ordering="1" parent="-46a41603:1313306f260:-7900" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-789a" ordering="1" parent="-46a41603:1313306f260:-789b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-7896"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-78f0" ordering="2" parent="-46a41603:1313306f260:-78f3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitOutputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7899" ordering="1" parent="-46a41603:1313306f260:-789b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-789c"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="839.9999999999999" y="226.00000000000003"/><mxPoint as="targetPoint" x="641.0256410256411" y="213.67521367521368"/><Array as="points" scilabClass=""><mxPoint x="840.0" y="210.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7898" ordering="2" parent="-46a41603:1313306f260:-789b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-785f" ordering="1" parent="-46a41603:1313306f260:-78a5" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-788e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="839.9999999999999" y="316.0"/><mxPoint as="targetPoint" x="840.5797101449276" y="282.60869565217394"/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-785e" ordering="1" parent="-46a41603:1313306f260:-78a5" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7863" ordering="1" parent="-46a41603:1313306f260:-78a8" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></ImplicitLink><SplitBlock id="-46a41603:1313306f260:-788c" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT"><mxGeometry as="geometry" height="7.0" width="7.0" x="707.0" y="447.0"/></SplitBlock><ImplicitInputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-788b" ordering="1" parent="-46a41603:1313306f260:-788c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-788a" ordering="1" parent="-46a41603:1313306f260:-788c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7889" ordering="2" parent="-46a41603:1313306f260:-788c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-46a41603:1313306f260:-7888"><mxGeometry as="geometry"><Array as="points" scilabClass=""><mxPoint x="730.0" y="450.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7866" ordering="1" parent="-46a41603:1313306f260:-7911" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-788b" ordering="1" parent="-46a41603:1313306f260:-788c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-7887"><mxGeometry as="geometry"><Array as="points" scilabClass=""/></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-790c" ordering="1" parent="-46a41603:1313306f260:-790e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-788a" ordering="1" parent="-46a41603:1313306f260:-788c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort></ImplicitLink><ImplicitLink id="-46a41603:1313306f260:-788d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="839.9999999999999" y="364.0"/><mxPoint as="targetPoint" x="797.1014492753624" y="449.2753623188406"/><Array as="points" scilabClass=""><mxPoint x="840.0" y="450.0"/></Array></mxGeometry><mxCell as="parent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/><ImplicitOutputPort as="source" connectable="0" dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-46a41603:1313306f260:-7862" ordering="1" parent="-46a41603:1313306f260:-78a8" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitOutputPort as="target" connectable="0" dataType="UNKNOW_TYPE" id="-46a41603:1313306f260:-7889" ordering="2" parent="-46a41603:1313306f260:-788c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort></ImplicitLink><TextBlock id="-46a41603:1313306f260:-785b" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j1.548 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="90.0" y="270.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-784d" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#881515" value="<html> <head> <style type="text/css"> <!-- body { color: #881515; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> q </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="820.0" y="450.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-784a" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j0.164 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="870.0" y="350.0"/></TextBlock><TextBlock id="-46a41603:1313306f260:-7848" parent="-46a41603:1313306f260:-791f" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="<html> <head> <style type="text/css"> <!-- body { color: black; font-family: Arial,Helvetica; font-weight: bold; font-size: 22 pt } --> </style> </head> <body> j1.548 </body> </html> "><mxGeometry as="geometry" height="40.0" width="40.0" x="870.0" y="260.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="-46a41603:1313306f260:-791f" parent="-46a41603:1313306f260:-791e"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH10/EX10.4/result_example_10_4.txt b/Working_Examples/83/CH10/EX10.4/result_example_10_4.txt new file mode 100755 index 0000000..93df320 --- /dev/null +++ b/Working_Examples/83/CH10/EX10.4/result_example_10_4.txt @@ -0,0 +1,14 @@ + + + +Transformer zero sequence reactance = 0.0805 pu +Generator zero sequence reactances = 0.06 pu +Zero sequence reactance of motor 1 = 0.083 pu +Zero sequence reactance of motor 2 = 0.165 pu +Reactance of current limiting reactors = 1.550 pu +Zero sequence reactance of transmission line = 0.494 pu + + + Zero sequence diagram has been drawn using XCOS,simulation has + not been done as it is not being asked in the problem + diff --git a/Working_Examples/83/CH11/EX11.1/example_11_1.sce b/Working_Examples/83/CH11/EX11.1/example_11_1.sce new file mode 100755 index 0000000..04e6f41 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.1/example_11_1.sce @@ -0,0 +1,20 @@ +//Chapter 11 +//Example 11.1 +//page 406 +//To draw sequence networks of generator and to compare LG fault current will be greater than three-phase fault current when neutral is solidly grounded +clear;clc; + +disp("Sequence networks of synchronous generator grounded through neutral impedance has been drawn using XCOS "); + +disp("Since the derivation can not be done here, let us do this problem by taking a suitable values for the sequence reactances of the generator"); + +disp("X1=j0.18, X2=j0.15, X0=j0.10 pu and Ea=1"); + +disp("From the figs 11.13 and 11.14 in the textbook,we can find Ilg and I3L"); + +Ea=1;X1=0.18*%i;X2=0.15*%i;X0=0.10*%i; + +IaLG=3*Ea/(2*X1+X0) +Ia3L=3*Ea/(3*X1) + +disp("Same values of sequence impedance have been used in XCOS simulation also to varify the result"); diff --git a/Working_Examples/83/CH11/EX11.1/example_11_1.xcos b/Working_Examples/83/CH11/EX11.1/example_11_1.xcos new file mode 100755 index 0000000..17bcda9 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.1/example_11_1.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.25" title="example_11_1"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="67e02cde:13157ae1f65:-7fff"/><mxCell id="67e02cde:13157ae1f65:-8000" parent="67e02cde:13157ae1f65:-7fff"/><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7fd1" interfaceFunctionName="Inductor" ordering="1" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="120.0" y="360.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f60" ordering="1" parent="67e02cde:13157ae1f65:-7fd1" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f61" ordering="1" parent="67e02cde:13157ae1f65:-7fd1" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7fce" interfaceFunctionName="Inductor" ordering="2" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="170.0" y="520.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f5c" ordering="1" parent="67e02cde:13157ae1f65:-7fce" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f5d" ordering="1" parent="67e02cde:13157ae1f65:-7fce" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7fcb" interfaceFunctionName="Inductor" ordering="3" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0000"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="170.0" y="600.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f58" ordering="1" parent="67e02cde:13157ae1f65:-7fcb" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f59" ordering="1" parent="67e02cde:13157ae1f65:-7fcb" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitLink id="67e02cde:13157ae1f65:-7fb6" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f68" target="67e02cde:13157ae1f65:-7f65"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="110.0" y="164.0"/><mxPoint as="targetPoint" x="110.0" y="220.0"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7fb5" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f64" target="67e02cde:13157ae1f65:-7f61"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="110.0" y="264.0"/><mxPoint as="targetPoint" x="140.0" y="320.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="110.0" y="310.0"/><mxPoint x="140.0" y="310.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7fb4" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f60" target="67e02cde:13157ae1f65:-7f5d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="140.0" y="374.0"/><mxPoint as="targetPoint" x="190.0" y="480.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="140.0" y="460.0"/><mxPoint x="190.0" y="460.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7fb3" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f5c" target="67e02cde:13157ae1f65:-7f59"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="190.0" y="534.0"/><mxPoint as="targetPoint" x="190.0" y="620.0"/></mxGeometry></ImplicitLink><GroundBlock dependsOnU="1" id="67e02cde:13157ae1f65:-7fac" interfaceFunctionName="Ground" ordering="4" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="10.0" y="60.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7fab" ordering="1" parent="67e02cde:13157ae1f65:-7fac" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7fde" interfaceFunctionName="SineVoltage" ordering="5" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="4.242"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="4.242"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.242"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="90.0" y="100.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f68" ordering="1" parent="67e02cde:13157ae1f65:-7fde" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f69" ordering="1" parent="67e02cde:13157ae1f65:-7fde" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="67e02cde:13157ae1f65:-7f4c" interfaceFunctionName="CurrentSensor" ordering="6" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=270;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="310.0" y="370.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f4a" ordering="2" parent="67e02cde:13157ae1f65:-7f4c" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="-8.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f49" ordering="1" parent="67e02cde:13157ae1f65:-7f4c" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f4b" ordering="1" parent="67e02cde:13157ae1f65:-7f4c" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="-8.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7f39" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f58" target="67e02cde:13157ae1f65:-7f49"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="190.0" y="664.0"/><mxPoint as="targetPoint" x="330.0" y="420.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="190.0" y="680.0"/><mxPoint x="330.0" y="680.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7f35" interfaceFunctionName="SineVoltage" ordering="7" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="4.242"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="4.242"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.242"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="740.0" y="290.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f33" ordering="1" parent="67e02cde:13157ae1f65:-7f35" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f34" ordering="1" parent="67e02cde:13157ae1f65:-7f35" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7f2c" interfaceFunctionName="Inductor" ordering="8" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0017188733"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0017188733"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0017188733"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="740.0" y="400.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f24" ordering="1" parent="67e02cde:13157ae1f65:-7f2c" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f25" ordering="1" parent="67e02cde:13157ae1f65:-7f2c" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="180" dependsOnU="1" id="67e02cde:13157ae1f65:-7f1d" interfaceFunctionName="CurrentSensor" ordering="9" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=180;mirror=false;flip=true"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="630.0" y="350.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f1b" ordering="2" parent="67e02cde:13157ae1f65:-7f1d" style="ExplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f1a" ordering="1" parent="67e02cde:13157ae1f65:-7f1d" style="ImplicitInputPort;align=right;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f1c" ordering="1" parent="67e02cde:13157ae1f65:-7f1d" style="ImplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitOutputPort><GroundBlock dependsOnU="1" id="67e02cde:13157ae1f65:-7f13" interfaceFunctionName="Ground" ordering="10" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="850.0" y="280.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f12" ordering="1" parent="67e02cde:13157ae1f65:-7f13" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitLink id="67e02cde:13157ae1f65:-7efc" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f33" target="67e02cde:13157ae1f65:-7f25"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="760.0" y="426.0"/><mxPoint as="targetPoint" x="760.0" y="360.0"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7ed7" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f24" target="67e02cde:13157ae1f65:-7f1a"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="674.0" y="370.0"/><mxPoint as="targetPoint" x="760.0" y="470.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="760.0" y="500.0"/><mxPoint x="700.0" y="500.0"/><mxPoint x="700.0" y="370.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7ecd" interfaceFunctionName="CMSCOPE" ordering="11" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-15 -15"/><data column="0" line="6" value="15 15"/><data column="0" line="7" value="0.250 0.250"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Fault current in LG and 3Phase faults"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.25"/><data column="0" line="2" realPart="0.25"/><data column="0" line="3" realPart="-15.0"/><data column="0" line="4" realPart="15.0"/><data column="0" line="5" realPart="-15.0"/><data column="0" line="6" realPart="15.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="490.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e38" ordering="1" parent="67e02cde:13157ae1f65:-7ecd" style="ExplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="-8.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e37" ordering="2" parent="67e02cde:13157ae1f65:-7ecd" style="ExplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="-8.0"/></ExplicitInputPort><ControlPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e36" ordering="1" parent="67e02cde:13157ae1f65:-7ecd" style="ControlPort;align=right;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ControlPort><BasicBlock angle="90" blockType="h" id="67e02cde:13157ae1f65:-7ec4" interfaceFunctionName="CLOCK_c" ordering="12" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;rotation=90;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="119.0"/><data column="1" line="0" realPart="-150.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f69"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f69"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f65"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f65"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="124.71066000000002"/><data column="1" line="0" realPart="-164.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f60"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f60"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="106.0"/><data column="0" line="2" realPart="135.37732666666668"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-204.0"/><data column="0" line="2" realPart="-168.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="136.71066000000002"/><data column="0" line="1" realPart="149.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-152.0"/><data column="0" line="1" realPart="-126.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="138.04399333333336"/><data column="0" line="1" realPart="151.70999999999998"/><data column="0" line="2" realPart="111.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-168.0"/><data column="0" line="1" realPart="-58.0"/><data column="0" line="2" realPart="-58.0"/><data column="0" line="3" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="590.0" y="490.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7eaf" ordering="1" parent="67e02cde:13157ae1f65:-7ec4" style="CommandPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></CommandPort><CommandControlLink id="67e02cde:13157ae1f65:-7eb8" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7eaf" target="67e02cde:13157ae1f65:-7e36"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="514.0" y="510.0"/><mxPoint as="targetPoint" x="590.0" y="510.0"/></mxGeometry></CommandControlLink><ExplicitLink id="67e02cde:13157ae1f65:-7eb7" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f4a" target="67e02cde:13157ae1f65:-7e38"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="480.0" y="486.0"/><mxPoint as="targetPoint" x="340.0" y="370.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="340.0" y="330.0"/><mxPoint x="480.0" y="330.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="67e02cde:13157ae1f65:-7eb6" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f1b" target="67e02cde:13157ae1f65:-7e37"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="500.0" y="486.0"/><mxPoint as="targetPoint" x="620.0" y="380.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="500.0" y="380.0"/></Array></mxGeometry></ExplicitLink><BasicBlock angle="270" dependsOnU="1" id="67e02cde:13157ae1f65:-7e98" interfaceFunctionName="Switch" ordering="13" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.01"/><data column="0" line="1" value="100000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="310.0" y="170.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e96" ordering="1" parent="67e02cde:13157ae1f65:-7e98" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e95" ordering="2" parent="67e02cde:13157ae1f65:-7e98" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e97" ordering="1" parent="67e02cde:13157ae1f65:-7e98" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" blockType="h" id="67e02cde:13157ae1f65:-7e8f" interfaceFunctionName="STEP_FUNCTION" ordering="14" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;rotation=270;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.005"/><data column="0" line="1" value="-2"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-2.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.005"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f55"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f55"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="108.57143300000001"/><data column="1" line="0" realPart="-70.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f52"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="18756eea:131b9e5142d:-7f52"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="116.00000299999998"/><data column="0" line="2" realPart="77.47839499999999"/><data column="0" line="3" realPart="77.47839499999999"/><data column="0" line="4" realPart="116.00000299999998"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-174.39289999999994"/><data column="0" line="2" realPart="-174.39289999999994"/><data column="0" line="3" realPart="-84.69677999999999"/><data column="0" line="4" realPart="-84.69677999999999"/><data column="0" line="5" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="124.57143300000001"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-60.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="390.0" y="260.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e40" ordering="1" parent="67e02cde:13157ae1f65:-7e8f" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ExplicitOutputPort><BasicBlock angle="180" dependsOnU="1" id="67e02cde:13157ae1f65:-7e83" interfaceFunctionName="Switch" ordering="15" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=180;mirror=true;flip=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.01"/><data column="0" line="1" value="100000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="600.0" y="220.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e81" ordering="1" parent="67e02cde:13157ae1f65:-7e83" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e80" ordering="2" parent="67e02cde:13157ae1f65:-7e83" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7e82" ordering="1" parent="67e02cde:13157ae1f65:-7e83" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7e6f" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f1c" target="67e02cde:13157ae1f65:-7e81"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="596.0" y="250.0"/><mxPoint as="targetPoint" x="630.0" y="360.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="550.0" y="360.0"/><mxPoint x="550.0" y="230.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="67e02cde:13157ae1f65:-7e6d" ordering="16" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="757.0" y="237.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e6b" ordering="1" parent="67e02cde:13157ae1f65:-7e6d" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e6a" ordering="2" parent="67e02cde:13157ae1f65:-7e6d" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e6c" ordering="1" parent="67e02cde:13157ae1f65:-7e6d" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="67e02cde:13157ae1f65:-7e69" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f34" target="67e02cde:13157ae1f65:-7e6c"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7e68" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7e6b" target="67e02cde:13157ae1f65:-7f12"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="760.0" y="240.0"/><mxPoint x="870.0" y="240.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7e6e" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7e82" target="67e02cde:13157ae1f65:-7e6a"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="644.0" y="260.0"/><mxPoint as="targetPoint" x="760.0" y="260.0"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7e54" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f4b" target="67e02cde:13157ae1f65:-7e96"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="320.0" y="214.0"/><mxPoint as="targetPoint" x="320.0" y="370.0"/></mxGeometry></ImplicitLink><SplitBlock id="67e02cde:13157ae1f65:-7e52" ordering="17" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="107.0" y="37.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e50" ordering="1" parent="67e02cde:13157ae1f65:-7e52" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e4f" ordering="2" parent="67e02cde:13157ae1f65:-7e52" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e51" ordering="1" parent="67e02cde:13157ae1f65:-7e52" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="67e02cde:13157ae1f65:-7e4e" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7f69" target="67e02cde:13157ae1f65:-7e51"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7e4d" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7e50" target="67e02cde:13157ae1f65:-7fab"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="30.0" y="40.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7e53" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7e97" target="67e02cde:13157ae1f65:-7e4f"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="330.0" y="166.0"/><mxPoint as="targetPoint" x="110.0" y="40.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="330.0" y="40.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="67e02cde:13157ae1f65:-7e4a" ordering="18" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="407.0" y="237.0"/></SplitBlock><ExplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e48" ordering="1" parent="67e02cde:13157ae1f65:-7e4a" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ExplicitOutputPort><ExplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e47" ordering="2" parent="67e02cde:13157ae1f65:-7e4a" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ExplicitOutputPort><ExplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7e49" ordering="1" parent="67e02cde:13157ae1f65:-7e4a" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ExplicitInputPort><ExplicitLink id="67e02cde:13157ae1f65:-7e46" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7e40" target="67e02cde:13157ae1f65:-7e49"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ExplicitLink><ExplicitLink id="67e02cde:13157ae1f65:-7e45" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7e48" target="67e02cde:13157ae1f65:-7e95"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="340.0" y="240.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="67e02cde:13157ae1f65:-7e4b" parent="67e02cde:13157ae1f65:-8000" source="67e02cde:13157ae1f65:-7e47" target="67e02cde:13157ae1f65:-7e80"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="596.0" y="250.0"/><mxPoint as="targetPoint" x="410.0" y="240.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="490.0" y="240.0"/><mxPoint x="490.0" y="250.0"/></Array></mxGeometry></ExplicitLink><TextBlock id="67e02cde:13157ae1f65:-7d9f" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.18"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.18"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.18"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="220.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d98" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault current Waveform in<br>LG and 3phase faults"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault current Waveform in<br>LG and 3phase faults"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault current Waveform in<br>LG and 3phase faults"/></ScilabString><mxGeometry as="geometry" height="40.0" width="50.0" x="500.0" y="540.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d95" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="390.0" y="290.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d8e" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="160.0" y="350.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d8b" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.10"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.10"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.10"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="210.0" y="520.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d88" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="3(j0)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="3(j0)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="3(j0)"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="220.0" y="600.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d85" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="3(j0.18)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="3(j0.18)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="3(j0.18)"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="790.0" y="430.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d81" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="3(Ea)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="3(Ea)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="3(Ea)"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="150.0" y="110.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d7e" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="3(Ea)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="3(Ea)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="3(Ea)"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="800.0" y="300.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d78" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#5B80E5;flip=false;mirror=false;fillColor=#E4CE26" value="Three-phase fault"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Three-phase fault"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Three-phase fault"/></ScilabString><mxGeometry as="geometry" height="30.0" width="130.0" x="710.0" y="520.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d74" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Positive"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Positive"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Positive"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="170.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d70" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Negative"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Negative"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Negative"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="60.0" y="340.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d6d" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Zero"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Zero"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Zero"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="550.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d58" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Measure LG <br>fault Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Measure LG <br>fault Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Measure LG <br>fault Current"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="320.0" y="420.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d53" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Measure 3ph fault <br>Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Measure 3ph fault <br>Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Measure 3ph fault <br>Current"/></ScilabString><mxGeometry as="geometry" height="40.0" width="120.0" x="580.0" y="390.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d4c" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Switch1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Switch1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Switch1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="360.0" y="170.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d48" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Switch2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Switch2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Switch2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="600.0" y="180.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7d45" parent="67e02cde:13157ae1f65:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#5B80E5;flip=false;mirror=false;fillColor=#E4CE26" value="LG fault"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="LG fault"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="LG fault"/></ScilabString><mxGeometry as="geometry" height="30.0" width="70.0" x="210.0" y="700.0"/></TextBlock><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7fd4" interfaceFunctionName="Inductor" ordering="19" parent="67e02cde:13157ae1f65:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00057295779"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="5.7295779E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.7295779E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="90.0" y="220.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f64" ordering="1" parent="67e02cde:13157ae1f65:-7fd4" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7f65" ordering="1" parent="67e02cde:13157ae1f65:-7fd4" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></root></mxGraphModel><mxCell as="defaultParent" id="67e02cde:13157ae1f65:-8000" parent="67e02cde:13157ae1f65:-7fff"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH11/EX11.1/result_example_11_1.txt b/Working_Examples/83/CH11/EX11.1/result_example_11_1.txt new file mode 100755 index 0000000..56faa7a --- /dev/null +++ b/Working_Examples/83/CH11/EX11.1/result_example_11_1.txt @@ -0,0 +1,19 @@ + + + Sequence networks of synchronous generator grounded through neutral impedance has been drawn using XCOS + + Since the derivation can not be done here, let us do this problem by taking a suitable values for the sequence reactances of the generator + + X1=j0.18, X2=j0.15, X0=j0.10 pu and Ea=1 + + From the figs 11.13 and 11.14 in the textbook,we can find Ilg and I3L + IaLG = + + - 6.5217391i + Ia3L = + + - 5.5555556i + + Same values of sequence impedance have been used in XCOS simulation also to varify the result + + diff --git a/Working_Examples/83/CH11/EX11.1/xcos_result_example_11_1.jpeg b/Working_Examples/83/CH11/EX11.1/xcos_result_example_11_1.jpeg Binary files differnew file mode 100755 index 0000000..3c5dd57 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.1/xcos_result_example_11_1.jpeg diff --git a/Working_Examples/83/CH11/EX11.2/example_11_2.sce b/Working_Examples/83/CH11/EX11.2/example_11_2.sce new file mode 100755 index 0000000..e45c76c --- /dev/null +++ b/Working_Examples/83/CH11/EX11.2/example_11_2.sce @@ -0,0 +1,23 @@ +//Chapter 11 +//Example 11.2 +//page 408 +//To find fault current and voltage across the grounding resistor +clear;clc; + +X1eq=(%i*0.18)/2; +X2eq=(%i*0.15)/2; +Z0eq=(%i*0.10)+3*(2*20/(11^2)); + +Ea=1; + +//calculation of fault current +printf('\nFault current is given by '); +If=(3*Ea)/(X1eq+X2eq+Z0eq) + +//current in grounding resistor +Ifg=abs(If)*(20/(11*sqrt(3))); +printf('\n\nCurrent through grounding resistor Ifg=%0.2fkA',Ifg); + +//voltage across grounding resistor +Vgr=abs(If*(2*20/(11^2))*(11/sqrt(3))); +printf('\n\nVoltage across grounding resistor Vgr=%0.2fkV\n\n',Vgr);
\ No newline at end of file diff --git a/Working_Examples/83/CH11/EX11.2/example_11_2.xcos b/Working_Examples/83/CH11/EX11.2/example_11_2.xcos new file mode 100755 index 0000000..f962f5f --- /dev/null +++ b/Working_Examples/83/CH11/EX11.2/example_11_2.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.25" title="example_11_2"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="67e02cde:13157ae1f65:-7af9"/><mxCell id="67e02cde:13157ae1f65:-7afa" parent="67e02cde:13157ae1f65:-7af9"/><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7adb" interfaceFunctionName="SineVoltage" ordering="1" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="230.0" y="130.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79fb" ordering="1" parent="67e02cde:13157ae1f65:-7adb" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79fc" ordering="1" parent="67e02cde:13157ae1f65:-7adb" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7ad8" interfaceFunctionName="Inductor" ordering="2" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00057295779"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="5.7295779E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.7295779E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="230.0" y="240.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79f2" ordering="1" parent="67e02cde:13157ae1f65:-7ad8" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79f3" ordering="1" parent="67e02cde:13157ae1f65:-7ad8" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="67e02cde:13157ae1f65:-7ac9" interfaceFunctionName="Inductor" ordering="3" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="120.0" y="350.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79ee" ordering="1" parent="67e02cde:13157ae1f65:-7ac9" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79ef" ordering="1" parent="67e02cde:13157ae1f65:-7ac9" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="67e02cde:13157ae1f65:-7ac3" interfaceFunctionName="Inductor" ordering="4" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="230.0" y="350.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79ea" ordering="1" parent="67e02cde:13157ae1f65:-7ac3" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79eb" ordering="1" parent="67e02cde:13157ae1f65:-7ac3" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="67e02cde:13157ae1f65:-7ab7" interfaceFunctionName="Inductor" ordering="5" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="120.0" y="470.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79e6" ordering="1" parent="67e02cde:13157ae1f65:-7ab7" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79e7" ordering="1" parent="67e02cde:13157ae1f65:-7ab7" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="67e02cde:13157ae1f65:-7aab" interfaceFunctionName="Resistor" ordering="6" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.99"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.99"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.99"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="120.0" y="560.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79e1" ordering="1" parent="67e02cde:13157ae1f65:-7aab" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79e2" ordering="1" parent="67e02cde:13157ae1f65:-7aab" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="67e02cde:13157ae1f65:-7a9c" interfaceFunctionName="CurrentSensor" ordering="7" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=270;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="510.0" y="290.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a99" ordering="1" parent="67e02cde:13157ae1f65:-7a9c" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a9b" ordering="1" parent="67e02cde:13157ae1f65:-7a9c" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="-8.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a9a" ordering="2" parent="67e02cde:13157ae1f65:-7a9c" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="-8.0"/></ExplicitOutputPort><GroundBlock dependsOnU="1" id="67e02cde:13157ae1f65:-7a8f" interfaceFunctionName="Ground" ordering="8" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="30.0" y="140.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a8e" ordering="1" parent="67e02cde:13157ae1f65:-7a8f" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="67e02cde:13157ae1f65:-7a8a" ordering="9" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="137.0" y="67.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a87" ordering="2" parent="67e02cde:13157ae1f65:-7a8a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a89" ordering="1" parent="67e02cde:13157ae1f65:-7a8a" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a88" ordering="1" parent="67e02cde:13157ae1f65:-7a8a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7a86" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a00" target="67e02cde:13157ae1f65:-7a89"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a85" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a88" target="67e02cde:13157ae1f65:-7a8e"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="50.0" y="70.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a84" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79ff" target="67e02cde:13157ae1f65:-79f7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="140.0" y="193.99999999999997"/><mxPoint as="targetPoint" x="142.85714285714286" y="234.69387755102042"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a83" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79fb" target="67e02cde:13157ae1f65:-79f3"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="249.99999999999997" y="193.99999999999997"/><mxPoint as="targetPoint" x="244.89795918367346" y="234.69387755102042"/></mxGeometry></ImplicitLink><SplitBlock id="67e02cde:13157ae1f65:-7a79" ordering="10" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="247.0" y="307.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a76" ordering="2" parent="67e02cde:13157ae1f65:-7a79" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a78" ordering="1" parent="67e02cde:13157ae1f65:-7a79" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a77" ordering="1" parent="67e02cde:13157ae1f65:-7a79" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7a75" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79f2" target="67e02cde:13157ae1f65:-7a78"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a7a" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79ea" target="67e02cde:13157ae1f65:-7a76"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="280.00000000000006" y="356.0"/><mxPoint as="targetPoint" x="255.10204081632654" y="316.3265306122449"/></mxGeometry></ImplicitLink><SplitBlock id="67e02cde:13157ae1f65:-7a70" ordering="11" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="137.0" y="437.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a6d" ordering="2" parent="67e02cde:13157ae1f65:-7a70" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a6f" ordering="1" parent="67e02cde:13157ae1f65:-7a70" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a6e" ordering="1" parent="67e02cde:13157ae1f65:-7a70" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7a6c" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79ef" target="67e02cde:13157ae1f65:-7a6f"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="140.0" y="440.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a6b" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a6e" target="67e02cde:13157ae1f65:-79eb"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="250.0" y="440.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a71" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79e6" target="67e02cde:13157ae1f65:-7a6d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="220.0" y="466.0"/><mxPoint as="targetPoint" x="224.48979591836735" y="438.7755102040816"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="67e02cde:13157ae1f65:-7a58" interfaceFunctionName="CMSCOPE" ordering="12" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-3 -5"/><data column="0" line="6" value="3 5"/><data column="0" line="7" value="0.250 0.250"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Fault current and Voltage across Grounding resistor"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.25"/><data column="0" line="2" realPart="0.25"/><data column="0" line="3" realPart="-3.0"/><data column="0" line="4" realPart="3.0"/><data column="0" line="5" realPart="-5.0"/><data column="0" line="6" realPart="5.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="620.0" y="270.0"/></BasicBlock><ControlPort dataType="UNKNOW_TYPE" id="390d52f:131bf23b07c:-7f3a" ordering="1" parent="67e02cde:13157ae1f65:-7a58" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="390d52f:131bf23b07c:-7f3c" ordering="1" parent="67e02cde:13157ae1f65:-7a58" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="390d52f:131bf23b07c:-7f3b" ordering="2" parent="67e02cde:13157ae1f65:-7a58" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><VoltageSensorBlock dependsOnU="1" id="67e02cde:13157ae1f65:-7a4b" interfaceFunctionName="VoltageSensor" ordering="13" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="510.0"/></VoltageSensorBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a48" ordering="1" parent="67e02cde:13157ae1f65:-7a4b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a4a" ordering="1" parent="67e02cde:13157ae1f65:-7a4b" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a49" ordering="2" parent="67e02cde:13157ae1f65:-7a4b" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><SplitBlock id="67e02cde:13157ae1f65:-7a42" ordering="14" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="347.0" y="627.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a3f" ordering="2" parent="67e02cde:13157ae1f65:-7a42" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a41" ordering="1" parent="67e02cde:13157ae1f65:-7a42" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a40" ordering="1" parent="67e02cde:13157ae1f65:-7a42" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7a3e" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79e2" target="67e02cde:13157ae1f65:-7a41"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="140.0" y="630.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a3d" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a40" target="67e02cde:13157ae1f65:-7a99"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="530.0" y="630.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a43" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a4a" target="67e02cde:13157ae1f65:-7a3f"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="350.0" y="554.0"/><mxPoint as="targetPoint" x="346.9387755102041" y="612.2448979591837"/></mxGeometry></ImplicitLink><SplitBlock id="67e02cde:13157ae1f65:-7a3b" ordering="15" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="137.0" y="527.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a38" ordering="2" parent="67e02cde:13157ae1f65:-7a3b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a3a" ordering="1" parent="67e02cde:13157ae1f65:-7a3b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a39" ordering="1" parent="67e02cde:13157ae1f65:-7a3b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7a37" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79e1" target="67e02cde:13157ae1f65:-7a3a"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a36" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a39" target="67e02cde:13157ae1f65:-79e7"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a3c" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a38" target="67e02cde:13157ae1f65:-7a48"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="326.0" y="530.0"/><mxPoint as="targetPoint" x="214.28571428571428" y="540.8163265306123"/></mxGeometry></ImplicitLink><ExplicitLink id="67e02cde:13157ae1f65:-7a35" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a49" target="390d52f:131bf23b07c:-7f3b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="374.0" y="530.0"/><mxPoint as="targetPoint" x="612.2448979591837" y="306.12244897959187"/><Array as="points" scilabClass="ScilabList"><mxPoint x="590.0" y="530.0"/><mxPoint x="590.0" y="300.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="67e02cde:13157ae1f65:-7a34" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a9a" target="390d52f:131bf23b07c:-7f3c"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="539.9999999999999" y="286.00000000000006"/><mxPoint as="targetPoint" x="612.2448979591837" y="285.7142857142857"/><Array as="points" scilabClass="ScilabList"><mxPoint x="540.0" y="260.0"/><mxPoint x="580.0" y="260.0"/><mxPoint x="580.0" y="280.0"/></Array></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="67e02cde:13157ae1f65:-7a2e" interfaceFunctionName="CLOCK_c" ordering="16" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="99.0"/><data column="1" line="0" realPart="-144.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f5c"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f5c"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-54.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="0.001"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f58"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f58"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="92.71066000000002"/><data column="1" line="0" realPart="-146.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="5.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f53"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f53"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="72.0"/><data column="0" line="2" realPart="104.71066000000002"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="-58.0"/><data column="0" line="1" realPart="-186.0"/><data column="0" line="2" realPart="-134.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="103.37732666666669"/><data column="0" line="1" realPart="129.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-150.0"/><data column="0" line="1" realPart="-120.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="106.04399333333335"/><data column="0" line="1" realPart="122.70999999999998"/><data column="0" line="2" realPart="82.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-150.0"/><data column="0" line="1" realPart="-40.0"/><data column="0" line="2" realPart="-40.0"/><data column="0" line="3" realPart="-10.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="50.0" width="40.0" x="620.0" y="140.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-79d9" ordering="1" parent="67e02cde:13157ae1f65:-7a2e" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="50.0"/></CommandPort><CommandControlLink id="67e02cde:13157ae1f65:-7a2c" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79d9" target="390d52f:131bf23b07c:-7f3a"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="630.0" y="193.99999999999997"/><mxPoint as="targetPoint" x="642.8571428571429" y="265.3061224489796"/></mxGeometry></CommandControlLink><SplitBlock id="67e02cde:13157ae1f65:-7a07" ordering="17" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="137.0" y="307.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a04" ordering="2" parent="67e02cde:13157ae1f65:-7a07" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a06" ordering="1" parent="67e02cde:13157ae1f65:-7a07" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-7a05" ordering="1" parent="67e02cde:13157ae1f65:-7a07" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-7a03" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79ee" target="67e02cde:13157ae1f65:-7a06"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a02" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a77" target="67e02cde:13157ae1f65:-7a05"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="140.0" y="310.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-7a08" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79f6" target="67e02cde:13157ae1f65:-7a04"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="140.0" y="284.0"/><mxPoint as="targetPoint" x="138.29787234042553" y="308.51063829787233"/></mxGeometry></ImplicitLink><TextBlock id="67e02cde:13157ae1f65:-79d6" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Ea"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Ea"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Ea"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="140.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79d4" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Ea"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Ea"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Ea"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="280.0" y="143.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79d2" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.18"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.18"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.18"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="70.0" y="240.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79d0" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.18"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.18"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.18"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="270.0" y="243.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79ce" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="350.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79cc" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="270.0" y="353.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79ca" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.10"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.10"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.10"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="160.0" y="470.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79c8" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="0.99"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="0.99"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="0.99"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="160.0" y="560.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79c6" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#5B80E5;flip=false;mirror=false;fillColor=#E4CE26" value="LG fault"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="LG fault"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="LG fault"/></ScilabString><mxGeometry as="geometry" height="30.0" width="70.0" x="130.0" y="640.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79c4" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Zero"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Zero"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Zero"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="70.0" y="510.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79c2" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Negative"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Negative"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Negative"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="60.0" y="380.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-79c0" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Positive"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Positive"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Positive"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="70.0" y="190.0"/></TextBlock><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-79b6" interfaceFunctionName="Switch" ordering="18" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.01"/><data column="0" line="1" value="100000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="500.0" y="150.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79b3" ordering="2" parent="67e02cde:13157ae1f65:-79b6" style="ExplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="-8.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79b5" ordering="1" parent="67e02cde:13157ae1f65:-79b6" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79b4" ordering="1" parent="67e02cde:13157ae1f65:-79b6" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="-8.0"/></ImplicitInputPort><ImplicitLink id="67e02cde:13157ae1f65:-79a5" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79b5" target="67e02cde:13157ae1f65:-7a9b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="520.0" y="286.0"/><mxPoint as="targetPoint" x="521.2765957446809" y="191.48936170212767"/></mxGeometry></ImplicitLink><SplitBlock id="67e02cde:13157ae1f65:-79a3" ordering="19" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="247.0" y="67.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-79a0" ordering="2" parent="67e02cde:13157ae1f65:-79a3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-79a2" ordering="1" parent="67e02cde:13157ae1f65:-79a3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="67e02cde:13157ae1f65:-79a1" ordering="1" parent="67e02cde:13157ae1f65:-79a3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="67e02cde:13157ae1f65:-799f" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7a87" target="67e02cde:13157ae1f65:-79a2"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="244.89795918367346" y="71.42857142857143"/><mxPoint x="250.0" y="70.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-799e" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79a1" target="67e02cde:13157ae1f65:-79fc"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="67e02cde:13157ae1f65:-79a4" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-79a0" target="67e02cde:13157ae1f65:-79b4"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="510.0" y="146.0"/><mxPoint as="targetPoint" x="255.31914893617022" y="74.46808510638299"/><Array as="points" scilabClass="ScilabList"><mxPoint x="510.0" y="70.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="180" blockType="h" id="67e02cde:13157ae1f65:-7994" interfaceFunctionName="STEP_FUNCTION" ordering="20" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;rotation=180;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.005"/><data column="0" line="1" value="-5"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-5.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.005"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f48"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f48"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="88.57143300000001"/><data column="1" line="0" realPart="-50.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f45"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7f45"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="92.00000299999999"/><data column="0" line="2" realPart="53.478395000000006"/><data column="0" line="3" realPart="53.478395000000006"/><data column="0" line="4" realPart="92.00000299999999"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-158.39289999999994"/><data column="0" line="2" realPart="-158.39289999999994"/><data column="0" line="3" realPart="-68.69677999999999"/><data column="0" line="4" realPart="-68.69677999999999"/><data column="0" line="5" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="104.57143300000001"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-40.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="570.0" y="70.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7990" ordering="1" parent="67e02cde:13157ae1f65:-7994" style="ExplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ExplicitOutputPort><ExplicitLink id="67e02cde:13157ae1f65:-7992" parent="67e02cde:13157ae1f65:-7afa" source="67e02cde:13157ae1f65:-7990" target="67e02cde:13157ae1f65:-79b3"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="566.0" y="90.0"/><mxPoint as="targetPoint" x="531.9148936170213" y="148.93617021276597"/><Array as="points" scilabClass="ScilabList"><mxPoint x="530.0" y="90.0"/></Array></mxGeometry></ExplicitLink><TextBlock id="67e02cde:13157ae1f65:-7987" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Switch1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Switch1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Switch1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="440.0" y="150.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7985" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="650.0" y="70.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-7980" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Measure LG <br>fault Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Measure LG <br>fault Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Measure LG <br>fault Current"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="510.0" y="340.0"/></TextBlock><TextBlock id="67e02cde:13157ae1f65:-797e" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault current and voltage<br> across resistorWaveform"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault current and voltage<br> across resistorWaveform"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault current and voltage<br> across resistorWaveform"/></ScilabString><mxGeometry as="geometry" height="40.0" width="50.0" x="670.0" y="310.0"/></TextBlock><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7af1" interfaceFunctionName="SineVoltage" ordering="21" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="120.0" y="130.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79ff" ordering="1" parent="67e02cde:13157ae1f65:-7af1" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-7a00" ordering="1" parent="67e02cde:13157ae1f65:-7af1" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="67e02cde:13157ae1f65:-7ae7" interfaceFunctionName="Inductor" ordering="22" parent="67e02cde:13157ae1f65:-7afa" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00057295779"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="5.7295779E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.7295779E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="120.0" y="240.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79f6" ordering="1" parent="67e02cde:13157ae1f65:-7ae7" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="67e02cde:13157ae1f65:-79f7" ordering="1" parent="67e02cde:13157ae1f65:-7ae7" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></root></mxGraphModel><mxCell as="defaultParent" id="67e02cde:13157ae1f65:-7afa" parent="67e02cde:13157ae1f65:-7af9"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH11/EX11.2/result_example_11_2.txt b/Working_Examples/83/CH11/EX11.2/result_example_11_2.txt new file mode 100755 index 0000000..42f4b76 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.2/result_example_11_2.txt @@ -0,0 +1,11 @@ + + +Fault current is given by If = + + 2.8234079 - 0.7544381i + + +Current through grounding resistor Ifg=3.07kA + +Voltage across grounding resistor Vgr=6.14kV + diff --git a/Working_Examples/83/CH11/EX11.2/xcos_result_example_11_2.jpeg b/Working_Examples/83/CH11/EX11.2/xcos_result_example_11_2.jpeg Binary files differnew file mode 100755 index 0000000..a3a6f25 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.2/xcos_result_example_11_2.jpeg diff --git a/Working_Examples/83/CH11/EX11.3/example_11_3.sce b/Working_Examples/83/CH11/EX11.3/example_11_3.sce new file mode 100755 index 0000000..0806a83 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.3/example_11_3.sce @@ -0,0 +1,77 @@ +//Chapter 11 +//Example 11.3 +//page 409 +//To find fault current and subtransient current in all parts of the system +clear;clc; + +a=-0.5+(sqrt(3)/2)*%i; + +//neglecting prefault currents +Vf0=10/11; +Eg=Vf0; Em1=Vf0 ;Em2=Vf0; + +//positive sequence network when it is replaced by its thevenin's equvivalent as shown in fig11.18 +printf('\nsequence impedances are given by \n'); +Z1=(%i*0.525*%i*0.23)/(%i*0.755); +Z2=Z1; +Z0=%i*1.712; +printf('Z1=j%0.4f \nZ2=j%0.4f \nZ0=j%0.4f',abs(imag(Z1)),abs(imag(Z2)),abs(imag(Z0))); +//to find sequence current +Ia1=Vf0/(Z1+Z2+Z0); +Ia2=Ia1; +Ia0=Ia1; + +//to find fault current +If=3*Ia0; +printf('\n\nFault Current= -j%0.4f',abs(imag(If))); + + +//component current flowing from generator and motor +printf('\n\nComponents currents flowing from Generator and motor are \n') +Ig1=Ia1*(0.23/0.755) ; +Ig2=Ig1; +Ig0=0; +printf('Ig1= -j%0.4f \nIg2= -j%0.4f \nIg0=%d',abs(Ig1),abs(Ig2),abs(Ig0)); +printf('\n'); +Im1=Ia1*(0.525/0.755); +Im2=Im1; +Im0=Ia0; +printf('\nIm1= -j%0.4f \nIm2= -j%0.4f \nIm0= -j%0.4f',abs(Im1),abs(Im2),abs(Im0)); + +//fault currents from the generator and motor towards g are +printf('\n\nFault current from the generator towards g are '); +Ig=[1 1 1;a^2 a 1;a a^2 1]*[Ig1;Ig2;Ig0]; +disp(Ig); +printf('and to g from motors are'); +Im=[1 1 1;a^2 a 1;a a^2 1]*[Im1;Im2;Im0]; +disp(Im); + +printf('\nPositive sequence current =%0.3f pu',(-%i*Ig1)); +printf('\nNegative sequence current =%0.3f pu',(%i*Ig2)); +printf('\nZero sequence current=%d\n',Ig0); + +//under loaded condition,PU motor currents are +Im1o=(15/(25*0.909*0.8))*(0.800103636+%i*0.5998617938); +Im2o=(7.5/(25*0.909*0.8))*(0.800103636+%i*0.5998617938); +printf('\nThe per unit motor currents are:\n'); +printf('Motor1:%0.2f +j%0.3f pu',real(Im1o),imag(Im1o)); +printf('\nMotor2:%0.2f +j%0.3f pu',real(Im2o),imag(Im2o)); + +//the voltages behind subtransient reactances are calculated below +printf('\n\nVoltage behind subtransient reactances:\n'); +printf('Motor1:'); +Em1=Em1-(%i*0.345*Im1o); +printf('Em1= %0.4f-j%0.4f',real(Em1),abs(imag(Em1))); + +printf('\nMotor2:'); +Em2=Em2-(%i*0.69*Im2o); +printf('Em2= %0.4f-j%0.4f',real(Em2),abs(imag(Em2))); + +printf('\nGenerator:'); +Eg=Eg+(%i*0.525*(Im2o+Im1o)); +printf('Eg= %0.4fj+%0.4f',real(Eg),abs(imag(Eg))); + +//actual value of positive sequence current from generator and motor +printf('\n\nThe actual value of positive sequence current from the generator towards fault is = %0.2f+j%0.3f',real(Im1o+Im2o+Ig1),imag(Im1o+Im2o+Ig1)); +printf('\nThe actual value of positive sequence current from the motors towards fault is = %0.2f-j%0.3f',real(-Im1o-Im2o+Im1),abs(imag(-Im1o-Im2o+Im1))); + diff --git a/Working_Examples/83/CH11/EX11.3/example_11_3.xcos b/Working_Examples/83/CH11/EX11.3/example_11_3.xcos new file mode 100755 index 0000000..4bbd370 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.3/example_11_3.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.25" title="example_11_3"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="2af926ac:131590fb290:-7ef3"/><mxCell id="2af926ac:131590fb290:-7ef4" parent="2af926ac:131590fb290:-7ef3"/><BasicBlock angle="90" dependsOnU="1" id="2af926ac:131590fb290:-7ee9" interfaceFunctionName="SineVoltage" ordering="1" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.285326"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.285326"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.285326"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="200.0" y="130.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7da5" ordering="1" parent="2af926ac:131590fb290:-7ee9" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7da6" ordering="1" parent="2af926ac:131590fb290:-7ee9" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="2af926ac:131590fb290:-7ee3" interfaceFunctionName="SineVoltage" ordering="2" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.285326"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.285326"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.285326"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="500.0" y="130.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7da1" ordering="1" parent="2af926ac:131590fb290:-7ee3" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7da2" ordering="1" parent="2af926ac:131590fb290:-7ee3" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="2af926ac:131590fb290:-7ee0" interfaceFunctionName="SineVoltage" ordering="3" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.285326"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.285326"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.285326"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="390.0" y="130.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7da9" ordering="1" parent="2af926ac:131590fb290:-7ee0" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7daa" ordering="1" parent="2af926ac:131590fb290:-7ee0" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7ed0" interfaceFunctionName="Inductor" ordering="4" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00063661977"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="200.0" y="240.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d9d" ordering="1" parent="2af926ac:131590fb290:-7ed0" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d9e" ordering="1" parent="2af926ac:131590fb290:-7ed0" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="2af926ac:131590fb290:-7ecd" interfaceFunctionName="Inductor" ordering="5" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0010345071"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0010345071"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0010345071"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="290.0" y="330.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d91" ordering="1" parent="2af926ac:131590fb290:-7ecd" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d92" ordering="1" parent="2af926ac:131590fb290:-7ecd" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7eca" interfaceFunctionName="Inductor" ordering="6" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0010981691"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0010981691"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0010981691"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="390.0" y="240.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d99" ordering="1" parent="2af926ac:131590fb290:-7eca" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d9a" ordering="1" parent="2af926ac:131590fb290:-7eca" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7ec7" interfaceFunctionName="Inductor" ordering="7" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0021963382"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0021963382"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0021963382"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="500.0" y="240.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d95" ordering="1" parent="2af926ac:131590fb290:-7ec7" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d96" ordering="1" parent="2af926ac:131590fb290:-7ec7" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitLink id="2af926ac:131590fb290:-7ebe" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7da5" target="2af926ac:131590fb290:-7d9d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="220.0" y="236.0"/><mxPoint as="targetPoint" x="220.0" y="200.0"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7ebd" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7da9" target="2af926ac:131590fb290:-7d99"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="410.0" y="236.0"/><mxPoint as="targetPoint" x="410.0" y="200.0"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7ebc" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7da1" target="2af926ac:131590fb290:-7d95"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="520.0" y="236.0"/><mxPoint as="targetPoint" x="520.0" y="180.0"/></mxGeometry></ImplicitLink><SplitBlock id="2af926ac:131590fb290:-7eb6" ordering="8" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="407.0" y="87.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7eb5" ordering="1" parent="2af926ac:131590fb290:-7eb6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7eb4" ordering="1" parent="2af926ac:131590fb290:-7eb6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7eb3" ordering="2" parent="2af926ac:131590fb290:-7eb6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7eb1" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7eb4" target="2af926ac:131590fb290:-7daa"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7eb7" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7eb3" target="2af926ac:131590fb290:-7da2"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="520.0" y="126.0"/><mxPoint as="targetPoint" x="410.0" y="90.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="520.0" y="90.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7eb0" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d9e" target="2af926ac:131590fb290:-7d92"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="220.0" y="284.0"/><mxPoint as="targetPoint" x="290.0" y="350.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="220.0" y="350.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="2af926ac:131590fb290:-7ea4" ordering="9" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="457.0" y="307.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7ea3" ordering="1" parent="2af926ac:131590fb290:-7ea4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7ea2" ordering="1" parent="2af926ac:131590fb290:-7ea4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7ea1" ordering="2" parent="2af926ac:131590fb290:-7ea4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7ea0" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d96" target="2af926ac:131590fb290:-7ea3"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="520.0" y="310.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7e9f" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7ea2" target="2af926ac:131590fb290:-7d9a"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="410.0" y="310.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7e9e" interfaceFunctionName="Inductor" ordering="10" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00063661977"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="220.0" y="460.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d8d" ordering="1" parent="2af926ac:131590fb290:-7e9e" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d8e" ordering="1" parent="2af926ac:131590fb290:-7e9e" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="2af926ac:131590fb290:-7e9b" interfaceFunctionName="Inductor" ordering="11" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0010345071"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0010345071"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0010345071"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="250.0" y="580.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d85" ordering="1" parent="2af926ac:131590fb290:-7e9b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d86" ordering="1" parent="2af926ac:131590fb290:-7e9b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7e98" interfaceFunctionName="Inductor" ordering="12" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00073211273"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="7.3211273E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="7.3211273E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="500.0" y="450.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d89" ordering="1" parent="2af926ac:131590fb290:-7e98" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d8a" ordering="1" parent="2af926ac:131590fb290:-7e98" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitLink id="2af926ac:131590fb290:-7e91" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d8e" target="2af926ac:131590fb290:-7d86"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="240.0" y="504.0"/><mxPoint as="targetPoint" x="300.0" y="600.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="240.0" y="600.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="2af926ac:131590fb290:-7e8e" ordering="13" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="397.0" y="347.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7e8d" ordering="1" parent="2af926ac:131590fb290:-7e8e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7e8c" ordering="1" parent="2af926ac:131590fb290:-7e8e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7e8b" ordering="2" parent="2af926ac:131590fb290:-7e8e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7e8a" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d91" target="2af926ac:131590fb290:-7e8d"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7e89" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7ea1" target="2af926ac:131590fb290:-7e8c"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="460.0" y="350.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="2af926ac:131590fb290:-7e87" ordering="14" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="397.0" y="427.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7e86" ordering="1" parent="2af926ac:131590fb290:-7e87" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7e85" ordering="1" parent="2af926ac:131590fb290:-7e87" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7e84" ordering="2" parent="2af926ac:131590fb290:-7e87" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7e83" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d89" target="2af926ac:131590fb290:-7e86"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="520.0" y="430.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7e82" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7e8b" target="2af926ac:131590fb290:-7e85"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7e88" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d8d" target="2af926ac:131590fb290:-7e84"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="240.0" y="456.0"/><mxPoint as="targetPoint" x="400.0" y="430.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="240.0" y="430.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7e75" interfaceFunctionName="Inductor" ordering="15" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0054494652"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0054494652"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0054494652"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="420.0" y="640.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d75" ordering="1" parent="2af926ac:131590fb290:-7e75" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d76" ordering="1" parent="2af926ac:131590fb290:-7e75" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="2af926ac:131590fb290:-7e17" interfaceFunctionName="CurrentSensor" ordering="16" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="320.0" y="580.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7e16" ordering="1" parent="2af926ac:131590fb290:-7e17" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="6.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7e15" ordering="2" parent="2af926ac:131590fb290:-7e17" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="26.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7e14" ordering="1" parent="2af926ac:131590fb290:-7e17" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitLink id="2af926ac:131590fb290:-7e06" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d85" target="2af926ac:131590fb290:-7e14"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="294.0" y="600.0000000000001"/><mxPoint as="targetPoint" x="315.38461538461536" y="600.0"/></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7de2" interfaceFunctionName="CurrentSensor" ordering="17" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=270;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="730.0" y="490.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7de1" ordering="1" parent="2af926ac:131590fb290:-7de2" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="-8.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7de0" ordering="2" parent="2af926ac:131590fb290:-7de2" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="-8.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7ddf" ordering="1" parent="2af926ac:131590fb290:-7de2" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="2af926ac:131590fb290:-7dd5" interfaceFunctionName="Switch" ordering="18" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.0000001"/><data column="0" line="1" value="10000000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-7"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E7"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="730.0" y="250.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d6c" ordering="1" parent="2af926ac:131590fb290:-7dd5" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d6e" ordering="1" parent="2af926ac:131590fb290:-7dd5" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d6d" ordering="2" parent="2af926ac:131590fb290:-7dd5" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitInputPort><BasicBlock angle="180" blockType="h" id="2af926ac:131590fb290:-7dc8" interfaceFunctionName="STEP_FUNCTION" ordering="19" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;rotation=180;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="18.521605"/><data column="1" line="0" realPart="-59.30322000000001"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.005"/><data column="0" line="1" value="-5"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-5.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.005"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d2f"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d2f"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="107.093038"/><data column="1" line="0" realPart="-69.30322000000001"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d2b"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d2b"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="78.521605"/><data column="0" line="1" realPart="78.52160799999999"/><data column="0" line="2" realPart="40.0"/><data column="0" line="3" realPart="40.0"/><data column="0" line="4" realPart="78.52160799999999"/><data column="0" line="5" realPart="78.521605"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="-63.30322000000001"/><data column="0" line="1" realPart="-129.69611999999995"/><data column="0" line="2" realPart="-129.69611999999995"/><data column="0" line="3" realPart="-40.0"/><data column="0" line="4" realPart="-40.0"/><data column="0" line="5" realPart="-15.30322000000001"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="102.521605"/><data column="0" line="1" realPart="123.093038"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-39.30322000000001"/><data column="0" line="1" realPart="-59.30322000000001"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="860.0" y="350.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d69" ordering="1" parent="2af926ac:131590fb290:-7dc8" style="ExplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ExplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7dc6" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7de1" target="2af926ac:131590fb290:-7d6e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="740.0" y="304.0"/><mxPoint as="targetPoint" x="744.4444444444445" y="500.0"/></mxGeometry></ImplicitLink><SplitBlock id="2af926ac:131590fb290:-7dc4" ordering="20" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="387.0" y="87.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7dc3" ordering="1" parent="2af926ac:131590fb290:-7dc4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7dc2" ordering="1" parent="2af926ac:131590fb290:-7dc4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7dc1" ordering="2" parent="2af926ac:131590fb290:-7dc4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7dc0" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7da6" target="2af926ac:131590fb290:-7dc3"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="220.0" y="90.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7dbf" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7dc2" target="2af926ac:131590fb290:-7eb5"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ExplicitLink id="2af926ac:131590fb290:-7db0" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d69" target="2af926ac:131590fb290:-7d6d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="856.0" y="369.99999999999994"/><mxPoint as="targetPoint" x="750.0" y="295.45454545454544"/><Array as="points" scilabClass="ScilabList"><mxPoint x="760.0" y="370.0"/></Array></mxGeometry></ExplicitLink><BasicBlock dependsOnU="1" id="2af926ac:131590fb290:-7d5e" interfaceFunctionName="MUX" ordering="21" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="multiplex" simulationFunctionType="C_OR_FORTRAN" style="MUX;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="2"/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="1" width="1"><data column="0" line="0" realPart="2.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="20.0" width="30.0" x="880.0" y="640.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="0" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d5d" ordering="1" parent="2af926ac:131590fb290:-7d5e" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="30.0" y="6.0"/></ExplicitOutputPort><ExplicitInputPort dataColumns="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d5c" ordering="1" parent="2af926ac:131590fb290:-7d5e" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="-2" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d5b" ordering="2" parent="2af926ac:131590fb290:-7d5e" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ExplicitInputPort><ExplicitLink id="2af926ac:131590fb290:-7d56" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7e15" target="2af926ac:131590fb290:-7d5b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="364.0" y="610.0"/><mxPoint as="targetPoint" x="875.0" y="659.0909090909091"/><Array as="points" scilabClass="ScilabList"><mxPoint x="650.0" y="610.0"/><mxPoint x="650.0" y="660.0"/></Array></mxGeometry></ExplicitLink><BasicBlock dependsOnU="1" id="2af926ac:131590fb290:-7d4b" interfaceFunctionName="CMSCOPE" ordering="22" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 2"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-1.5 -1.5"/><data column="0" line="6" value="1.5 1.5"/><data column="0" line="7" value="0.250 0.250"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Fault Current,Generator and Motor side components"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.25"/><data column="0" line="2" realPart="0.25"/><data column="0" line="3" realPart="-1.5"/><data column="0" line="4" realPart="1.5"/><data column="0" line="5" realPart="-1.5"/><data column="0" line="6" realPart="1.5"/></ScilabDouble><ScilabDouble as="integerParameters" height="13" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="2.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="5.0"/><data column="0" line="12" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="960.0" y="520.0"/></BasicBlock><ControlPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7ce5" ordering="1" parent="2af926ac:131590fb290:-7d4b" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7ce7" ordering="1" parent="2af926ac:131590fb290:-7d4b" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="2" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7ce6" ordering="2" parent="2af926ac:131590fb290:-7d4b" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ExplicitLink id="2af926ac:131590fb290:-7d47" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d5d" target="2af926ac:131590fb290:-7ce6"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="913.9999999999999" y="650.0"/><mxPoint as="targetPoint" x="954.5454545454545" y="545.4545454545455"/><Array as="points" scilabClass="ScilabList"><mxPoint x="940.0" y="650.0"/><mxPoint x="940.0" y="550.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="2af926ac:131590fb290:-7d46" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7de0" target="2af926ac:131590fb290:-7ce7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="759.9999999999999" y="486.0"/><mxPoint as="targetPoint" x="953.6423841059602" y="529.8013245033112"/><Array as="points" scilabClass="ScilabList"><mxPoint x="760.0" y="460.0"/><mxPoint x="890.0" y="460.0"/><mxPoint x="890.0" y="530.0"/></Array></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="2af926ac:131590fb290:-7d40" interfaceFunctionName="CLOCK_c" ordering="23" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="99.0"/><data column="1" line="0" realPart="-160.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d25"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d25"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-70.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d23"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d23"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="90.3773266666667"/><data column="1" line="0" realPart="-166.33333333333331"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="7.0"/><data column="1" line="0" realPart="7.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="5.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d20"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-4c79a1b6:166e2706967:-7d20"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="60.0"/><data column="0" line="2" realPart="97.54399333333338"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="-74.0"/><data column="0" line="1" realPart="-170.0"/><data column="0" line="2" realPart="-155.33333333333331"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="97.48843777777782"/><data column="0" line="1" realPart="129.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-163.66666666666666"/><data column="0" line="1" realPart="-136.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="97.59954888888893"/><data column="0" line="1" realPart="100.70999999999998"/><data column="0" line="2" realPart="60.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-163.66666666666666"/><data column="0" line="1" realPart="-40.0"/><data column="0" line="2" realPart="-40.0"/><data column="0" line="3" realPart="-26.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="960.0" y="420.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7d34" ordering="1" parent="2af926ac:131590fb290:-7d40" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><CommandControlLink id="2af926ac:131590fb290:-7d3d" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d34" target="2af926ac:131590fb290:-7ce5"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="980.0" y="444.0"/><mxPoint as="targetPoint" x="976.4705882352941" y="517.6470588235294"/></mxGeometry></CommandControlLink><GroundBlock angle="180" dependsOnU="1" id="2af926ac:131590fb290:-7d2d" interfaceFunctionName="Ground" ordering="24" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;rotation=180;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="370.0" y="10.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7d2c" ordering="1" parent="2af926ac:131590fb290:-7d2d" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><SplitBlock id="2af926ac:131590fb290:-7d23" ordering="25" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="387.0" y="67.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7d22" ordering="1" parent="2af926ac:131590fb290:-7d23" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7d21" ordering="1" parent="2af926ac:131590fb290:-7d23" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7d20" ordering="2" parent="2af926ac:131590fb290:-7d23" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7d1f" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d6c" target="2af926ac:131590fb290:-7d22"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="750.0" y="70.0"/><mxPoint x="390.0" y="70.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7d1e" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7dc1" target="2af926ac:131590fb290:-7d21"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7d24" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d20" target="2af926ac:131590fb290:-7d2c"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="389.99999999999994" y="44.0"/><mxPoint as="targetPoint" x="388.2352941176471" y="70.58823529411765"/></mxGeometry></ImplicitLink><SplitBlock id="2af926ac:131590fb290:-7d01" ordering="26" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="437.0" y="587.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7d00" ordering="1" parent="2af926ac:131590fb290:-7d01" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7cff" ordering="1" parent="2af926ac:131590fb290:-7d01" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="2af926ac:131590fb290:-7cfe" ordering="2" parent="2af926ac:131590fb290:-7d01" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="2af926ac:131590fb290:-7cfd" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d75" target="2af926ac:131590fb290:-7d00"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7cfc" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7e16" target="2af926ac:131590fb290:-7cff"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="2af926ac:131590fb290:-7d02" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7e12" target="2af926ac:131590fb290:-7cfe"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="509.99999999999994" y="584.0"/><mxPoint as="targetPoint" x="435.29411764705884" y="588.2352941176471"/><Array as="points" scilabClass="ScilabList"><mxPoint x="510.0" y="590.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="2af926ac:131590fb290:-7e13" interfaceFunctionName="CurrentSensor" ordering="27" parent="2af926ac:131590fb290:-7ef4" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=90;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="500.0" y="510.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7e12" ordering="1" parent="2af926ac:131590fb290:-7e13" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7e11" ordering="2" parent="2af926ac:131590fb290:-7e13" style="ExplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="2af926ac:131590fb290:-7e10" ordering="1" parent="2af926ac:131590fb290:-7e13" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitLink id="2af926ac:131590fb290:-7cf0" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d8a" target="2af926ac:131590fb290:-7e10"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="520.0" y="494.0"/><mxPoint as="targetPoint" x="520.0" y="502.85714285714283"/></mxGeometry></ImplicitLink><ExplicitLink id="2af926ac:131590fb290:-7cef" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7e11" target="2af926ac:131590fb290:-7d5c"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="530.0" y="554.0"/><mxPoint as="targetPoint" x="874.2857142857143" y="640.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="531.4285714285714" y="588.5714285714286"/><mxPoint x="700.0" y="590.0"/><mxPoint x="700.0" y="640.0"/></Array></mxGeometry></ExplicitLink><ImplicitLink id="2af926ac:131590fb290:-7ce9" parent="2af926ac:131590fb290:-7ef4" source="2af926ac:131590fb290:-7d76" target="2af926ac:131590fb290:-7ddf"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="440.0" y="684.0"/><mxPoint as="targetPoint" x="752.5773195876288" y="536.0824742268042"/><Array as="points" scilabClass="ScilabList"><mxPoint x="440.0" y="730.0"/><mxPoint x="750.0" y="730.0"/></Array></mxGeometry></ImplicitLink><TextBlock id="2af926ac:131590fb290:-7c5a" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Positive"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Positive"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Positive"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="210.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c58" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Negative"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Negative"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Negative"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="480.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c56" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#E09038;flip=false;mirror=false" value="Zero"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Zero"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Zero"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="640.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c54" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="160.0" y="250.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c50" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.345"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.345"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.345"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="340.0" y="240.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c4c" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.69"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.69"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.69"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="550.0" y="240.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c48" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.325"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.325"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.325"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="290.0" y="370.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c45" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="E&quot;g"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="E&quot;g"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="E&quot;g"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="140.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c42" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="E&quot;m2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="E&quot;m2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="E&quot;m2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="560.0" y="140.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c41" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="E&quot;m1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="E&quot;m1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="E&quot;m1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="140.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c3d" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="180.0" y="460.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c3a" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.325"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.325"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.325"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="250.0" y="540.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c37" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.23"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.23"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.23"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="550.0" y="450.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c34" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.712"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.712"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.712"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="640.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c30" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Generator side comp"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator side comp"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator side comp"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="320.0" y="610.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c2c" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Motor <br>side comp"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Motor <br>side comp"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Motor <br>side comp"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="570.0" y="510.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c28" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Measure <br>fault Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Measure <br>fault Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Measure <br>fault Current"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="740.0" y="540.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c26" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="860.0" y="310.0"/></TextBlock><TextBlock id="2af926ac:131590fb290:-7c24" parent="2af926ac:131590fb290:-7ef4" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Switch1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Switch1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Switch1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="790.0" y="250.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="2af926ac:131590fb290:-7ef4" parent="2af926ac:131590fb290:-7ef3"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH11/EX11.3/result_example_11_3.txt b/Working_Examples/83/CH11/EX11.3/result_example_11_3.txt new file mode 100755 index 0000000..fa49a93 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.3/result_example_11_3.txt @@ -0,0 +1,42 @@ + +sequence impedances are given by +Z1=j0.1599 +Z2=j0.1599 +Z0=j1.7120 + +Fault Current= -j1.3422 + +Components currents flowing from Generator and motor are +Ig1= -j0.1363 +Ig2= -j0.1363 +Ig0=0 + +Im1= -j0.3111 +Im2= -j0.3111 +Im0= -j0.4474 + +Fault current from the generator towards g are + - 0.2725981i + 0.1362990i + 0.1362990i +and to g from motors are + - 1.0696512i + - 0.1362990i + - 0.1362990i + +Positive sequence current =-0.136 pu +Negative sequence current =0.136 pu +Zero sequence current=0 + +The per unit motor currents are: +Motor1:0.66 +j0.495 pu +Motor2:0.33 +j0.247 pu + +Voltage behind subtransient reactances: +Motor1:Em1= 1.0798-j0.2278 +Motor2:Em2= 1.0798-j0.2278 +Generator:Eg= 0.5193j+0.5199 + +The actual value of positive sequence current from the generator towards fault is = 0.99+j0.606 +The actual value of positive sequence current from the motors towards fault is = -0.99-j1.054 + diff --git a/Working_Examples/83/CH11/EX11.3/xcos_result_example_11_3.jpeg b/Working_Examples/83/CH11/EX11.3/xcos_result_example_11_3.jpeg Binary files differnew file mode 100755 index 0000000..b1d7d67 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.3/xcos_result_example_11_3.jpeg diff --git a/Working_Examples/83/CH11/EX11.4/example_11_4.sce b/Working_Examples/83/CH11/EX11.4/example_11_4.sce new file mode 100755 index 0000000..f317fbf --- /dev/null +++ b/Working_Examples/83/CH11/EX11.4/example_11_4.sce @@ -0,0 +1,29 @@ +//Chapter 11 +//Example 11.4 +//page 412 +//To find L-L fault current and voltage of healthy phase +clc;clear; +X1eq=0.09*%i; +X2eq=0.075*%i; +Z0=0.99+(%i*0.1); +Ea=1;Ia0=0; + +//to calculate Ia1 +Ia1=Ea/(X1eq+X2eq); + +//to calculate fault current +If=(-%i*sqrt(3))*(-%i*6.06); +Va1=Ea-(Ia1*X1eq); +Va0=(-Ia0*Z0); +Va2=Va1; + +//voltage in healthy phase +Va=Va1+Va2+Va0; + +//displaying the result +printf('\nIa1=-j%0.2f',abs(Ia1)); +printf('\nIf=%0.3f',If); +printf('\nVa1=Va2=%0.3f',Va1); +printf('\nVa0=%d',Va0); +printf('\nVa=Va1+Va2+Va0=%0.2f\n\n',Va); + diff --git a/Working_Examples/83/CH11/EX11.4/example_11_4.xcos b/Working_Examples/83/CH11/EX11.4/example_11_4.xcos new file mode 100755 index 0000000..87dd270 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.4/example_11_4.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.25" title="example_11_4"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="-1f09110a:1315ad634dc:-7fff"/><mxCell id="-1f09110a:1315ad634dc:-8000" parent="-1f09110a:1315ad634dc:-7fff"/><BasicBlock angle="90" dependsOnU="1" id="-1f09110a:1315ad634dc:-7fd4" interfaceFunctionName="Inductor" ordering="1" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00028647889"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.8647889E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.8647889E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="340.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6b" ordering="1" parent="-1f09110a:1315ad634dc:-7fd4" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6a" ordering="1" parent="-1f09110a:1315ad634dc:-7fd4" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-1f09110a:1315ad634dc:-7fd1" interfaceFunctionName="Inductor" ordering="2" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00023873241"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.3873241E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.3873241E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="620.0" y="270.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f67" ordering="1" parent="-1f09110a:1315ad634dc:-7fd1" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f66" ordering="1" parent="-1f09110a:1315ad634dc:-7fd1" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7fce" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f6e" target="-1f09110a:1315ad634dc:-7f6b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="150.0" y="264.0"/><mxPoint as="targetPoint" x="150.0" y="340.0"/></mxGeometry></ImplicitLink><VoltageSensorBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7fc4" interfaceFunctionName="VoltageSensor" ordering="3" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=0;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="360.0" y="250.0"/></VoltageSensorBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fc2" ordering="2" parent="-1f09110a:1315ad634dc:-7fc4" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fc1" ordering="1" parent="-1f09110a:1315ad634dc:-7fc4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fc3" ordering="1" parent="-1f09110a:1315ad634dc:-7fc4" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7faa" interfaceFunctionName="CurrentSensor" ordering="4" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=0;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="440.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fa8" ordering="2" parent="-1f09110a:1315ad634dc:-7faa" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="26.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fa7" ordering="1" parent="-1f09110a:1315ad634dc:-7faa" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fa9" ordering="1" parent="-1f09110a:1315ad634dc:-7faa" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7fa6" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fa9" target="-1f09110a:1315ad634dc:-7f67"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="424.0" y="450.0"/><mxPoint as="targetPoint" x="540.0" y="320.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="640.0" y="450.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="-1f09110a:1315ad634dc:-7f9c" ordering="5" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="227.0" y="417.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f9a" ordering="1" parent="-1f09110a:1315ad634dc:-7f9c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f99" ordering="2" parent="-1f09110a:1315ad634dc:-7f9c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f9b" ordering="1" parent="-1f09110a:1315ad634dc:-7f9c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7f98" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fc3" target="-1f09110a:1315ad634dc:-7f9b"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="380.0" y="420.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f97" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f6a" target="-1f09110a:1315ad634dc:-7f9a"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="150.0" y="420.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f9d" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f99" target="-1f09110a:1315ad634dc:-7fa7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="376.0" y="460.0"/><mxPoint as="targetPoint" x="230.0" y="420.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="230.0" y="460.0"/></Array></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7f8d" interfaceFunctionName="CMSCOPE" ordering="6" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-1.3 -20"/><data column="0" line="6" value="1.3 20"/><data column="0" line="7" value="0.250 0.250"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Measure of positive sequence voltage and current"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.25"/><data column="0" line="2" realPart="0.25"/><data column="0" line="3" realPart="-1.3"/><data column="0" line="4" realPart="1.3"/><data column="0" line="5" realPart="-20.0"/><data column="0" line="6" realPart="20.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="260.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="390d52f:131bf23b07c:-7e22" ordering="1" parent="-1f09110a:1315ad634dc:-7f8d" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ControlPort dataType="UNKNOW_TYPE" id="390d52f:131bf23b07c:-7e20" ordering="1" parent="-1f09110a:1315ad634dc:-7f8d" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="390d52f:131bf23b07c:-7e21" ordering="2" parent="-1f09110a:1315ad634dc:-7f8d" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ExplicitLink id="-1f09110a:1315ad634dc:-7f7a" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fc2" target="390d52f:131bf23b07c:-7e22"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="304.0" y="270.0"/><mxPoint as="targetPoint" x="460.0" y="270.0"/></mxGeometry></ExplicitLink><ExplicitLink id="-1f09110a:1315ad634dc:-7f79" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fa8" target="390d52f:131bf23b07c:-7e21"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="466.0" y="290.0"/><mxPoint as="targetPoint" x="420.0" y="470.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="440.0" y="470.0"/><mxPoint x="440.0" y="290.0"/></Array></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="-1f09110a:1315ad634dc:-7f73" interfaceFunctionName="CLOCK_c" ordering="7" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="99.0"/><data column="1" line="0" realPart="-152.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e3d"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e3d"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-62.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e39"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e39"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="92.71066000000002"/><data column="1" line="0" realPart="-154.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e34"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e34"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="66.0"/><data column="0" line="2" realPart="103.37732666666669"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="-18.0"/><data column="0" line="1" realPart="-186.0"/><data column="0" line="2" realPart="-158.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="104.71066000000002"/><data column="0" line="1" realPart="129.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-142.0"/><data column="0" line="1" realPart="-128.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="106.04399333333335"/><data column="0" line="1" realPart="111.70999999999998"/><data column="0" line="2" realPart="71.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-158.0"/><data column="0" line="1" realPart="-40.0"/><data column="0" line="2" realPart="-40.0"/><data column="0" line="3" realPart="-66.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="180.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f5e" ordering="1" parent="-1f09110a:1315ad634dc:-7f73" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><CommandControlLink id="-1f09110a:1315ad634dc:-7f71" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f5e" target="390d52f:131bf23b07c:-7e20"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="490.0" y="224.0"/><mxPoint as="targetPoint" x="490.0" y="250.0"/></mxGeometry></CommandControlLink><BasicBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7f52" interfaceFunctionName="Switch" ordering="8" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=0;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.000001"/><data column="0" line="1" value="1000000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-6"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1000000.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="270.0" y="140.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f39" ordering="1" parent="-1f09110a:1315ad634dc:-7f52" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f38" ordering="2" parent="-1f09110a:1315ad634dc:-7f52" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f37" ordering="1" parent="-1f09110a:1315ad634dc:-7f52" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock blockType="h" id="-1f09110a:1315ad634dc:-7f3d" interfaceFunctionName="STEP_FUNCTION" ordering="9" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="2.521605000000008"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.005"/><data column="0" line="1" value="-5"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-5.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.005"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e29"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e29"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="91.093038"/><data column="1" line="0" realPart="-50.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e26"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="390d52f:131bf23b07c:-7e26"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="62.52160500000001"/><data column="0" line="1" realPart="78.52160799999999"/><data column="0" line="2" realPart="40.0"/><data column="0" line="3" realPart="40.0"/><data column="0" line="4" realPart="78.52160799999999"/><data column="0" line="5" realPart="62.52160500000001"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-134.39289999999994"/><data column="0" line="2" realPart="-134.39289999999994"/><data column="0" line="3" realPart="-44.69677999999999"/><data column="0" line="4" realPart="-44.69677999999999"/><data column="0" line="5" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="86.52160500000001"/><data column="0" line="1" realPart="107.093038"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-40.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="210.0" y="200.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f34" ordering="1" parent="-1f09110a:1315ad634dc:-7f3d" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><GroundBlock angle="180" dependsOnU="1" id="-1f09110a:1315ad634dc:-7f1f" interfaceFunctionName="Ground" ordering="10" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;rotation=180;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="60.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f1e" ordering="1" parent="-1f09110a:1315ad634dc:-7f1f" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><SplitBlock id="-1f09110a:1315ad634dc:-7f1a" ordering="11" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="147.0" y="147.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f18" ordering="1" parent="-1f09110a:1315ad634dc:-7f1a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f17" ordering="2" parent="-1f09110a:1315ad634dc:-7f1a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f19" ordering="1" parent="-1f09110a:1315ad634dc:-7f1a" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7f15" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f18" target="-1f09110a:1315ad634dc:-7f6f"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f1b" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f17" target="-1f09110a:1315ad634dc:-7f1e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="150.0" y="104.0"/><mxPoint as="targetPoint" x="150.0" y="150.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f14" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f19" target="-1f09110a:1315ad634dc:-7f39"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="210.0" y="150.0"/><mxPoint x="240.0" y="150.0"/></Array></mxGeometry></ImplicitLink><ExplicitLink id="-1f09110a:1315ad634dc:-7efb" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f34" target="-1f09110a:1315ad634dc:-7f38"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="244.0" y="220.0"/><mxPoint as="targetPoint" x="260.0" y="170.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="260.0" y="220.0"/><mxPoint x="260.0" y="170.0"/></Array></mxGeometry></ExplicitLink><SplitBlock id="-1f09110a:1315ad634dc:-7ec6" ordering="12" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="337.0" y="157.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7ec4" ordering="1" parent="-1f09110a:1315ad634dc:-7ec6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7ec3" ordering="2" parent="-1f09110a:1315ad634dc:-7ec6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7ec5" ordering="1" parent="-1f09110a:1315ad634dc:-7ec6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7ec2" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f37" target="-1f09110a:1315ad634dc:-7ec5"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7ec1" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f66" target="-1f09110a:1315ad634dc:-7ec4"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="640.0" y="160.0"/><mxPoint x="640.0" y="160.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7ec7" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7ec3" target="-1f09110a:1315ad634dc:-7fc1"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="356.0" y="270.0"/><mxPoint as="targetPoint" x="336.734693877551" y="163.26530612244898"/><Array as="points" scilabClass="ScilabList"><mxPoint x="340.0" y="270.0"/></Array></mxGeometry></ImplicitLink><TextBlock id="-1f09110a:1315ad634dc:-7e0c" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Ea"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Ea"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Ea"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="90.0" y="210.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7e08" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.09"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.09"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.09"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="340.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7e05" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.075"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.075"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.075"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="670.0" y="270.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7e01" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Measure of positive<br>sequence voltage<br>&amp; Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Measure of positive<br>sequence voltage<br>&amp; Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Measure of positive<br>sequence voltage<br>&amp; Current"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="510.0" y="320.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7dff" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="240.0" y="240.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7dfd" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Switch1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Switch1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Switch1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="270.0" y="100.0"/></TextBlock><BasicBlock angle="90" dependsOnU="1" id="-1f09110a:1315ad634dc:-7fde" interfaceFunctionName="SineVoltage" ordering="13" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="130.0" y="200.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6f" ordering="1" parent="-1f09110a:1315ad634dc:-7fde" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6e" ordering="1" parent="-1f09110a:1315ad634dc:-7fde" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort></root></mxGraphModel><mxCell as="defaultParent" id="-1f09110a:1315ad634dc:-8000" parent="-1f09110a:1315ad634dc:-7fff"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH11/EX11.4/result_example_11_4.txt b/Working_Examples/83/CH11/EX11.4/result_example_11_4.txt new file mode 100755 index 0000000..3d43e5b --- /dev/null +++ b/Working_Examples/83/CH11/EX11.4/result_example_11_4.txt @@ -0,0 +1,9 @@ + + +Ia1=-j6.06 +If=-10.496 +Va1=Va2=0.455 +Va0=0 +Va=Va1+Va2+Va0=0.91 + + diff --git a/Working_Examples/83/CH11/EX11.4/xcos_result_example_11_4.jpeg b/Working_Examples/83/CH11/EX11.4/xcos_result_example_11_4.jpeg Binary files differnew file mode 100755 index 0000000..9f7ff83 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.4/xcos_result_example_11_4.jpeg diff --git a/Working_Examples/83/CH11/EX11.5/example_11_5.sce b/Working_Examples/83/CH11/EX11.5/example_11_5.sce new file mode 100755 index 0000000..05f6869 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.5/example_11_5.sce @@ -0,0 +1,36 @@ +//Chapter 11 +//Example 11.5 +//page 413 +//To find Double line to ground fault current and voltage of healthy phase +clc;clear; + +Z1eq=0.09*%i; +Z2eq=0.075*%i; +Z0=(%i*0.1); +Ea=1; +a=(-0.5+%i*sqrt(3)/2); + +//to find the sequence components of healthy phase +Ia1=Ea/(Z1eq+(Z2eq*Z0/(Z2eq+Z0))); +Va1=Ea-(Ia1*Z1eq); +Va2=Va1; +Va0=Va1; + +Ia2=-(Va2/Z2eq); +Ia0=-(Va0/Z0); + +I=[1 1 1;a^2 a 1;a a^2 1]*[Ia1; Ia2; Ia0]; + +//voltage of the healthy phase +Va=3*Va1; + +//displaying the results +printf('Ia1=-j%0.3f\n',abs(Ia1)); +printf(' Ia2=j%0.3f\n',abs(Ia2)); +printf(' Ia0=j%0.3f\n\n',abs(Ia0)); + +printf(' Ia=%0.3f + j%0.3f\n',real(I(1,1)),imag(I(1,1))); +printf(' Ib=%0.3f + j%0.3f\n',real(I(2,1)),imag(I(2,1))); +printf(' Ic=%0.3f + j%0.3f\n\n',real(I(3,1)),imag(I(3,1))); + +printf(' Voltage of the healthy phase Va=3Va1=%0.3f',Va);
\ No newline at end of file diff --git a/Working_Examples/83/CH11/EX11.5/example_11_5.xcos b/Working_Examples/83/CH11/EX11.5/example_11_5.xcos new file mode 100755 index 0000000..21a6f04 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.5/example_11_5.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.25" title="example_11_5"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="-1f09110a:1315ad634dc:-7fff"/><mxCell id="-1f09110a:1315ad634dc:-8000" parent="-1f09110a:1315ad634dc:-7fff"/><BasicBlock angle="270" dependsOnU="1" id="-1f09110a:1315ad634dc:-7fd1" interfaceFunctionName="Inductor" ordering="2" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00023873241"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.3873241E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.3873241E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="620.0" y="270.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f66" ordering="1" parent="-1f09110a:1315ad634dc:-7fd1" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f67" ordering="1" parent="-1f09110a:1315ad634dc:-7fd1" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7fce" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f6e" target="-1f09110a:1315ad634dc:-7f6b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="150.0" y="264.0"/><mxPoint as="targetPoint" x="150.0" y="340.0"/></mxGeometry></ImplicitLink><VoltageSensorBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7fc4" interfaceFunctionName="VoltageSensor" ordering="3" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=0;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="360.0" y="250.0"/></VoltageSensorBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fc1" ordering="1" parent="-1f09110a:1315ad634dc:-7fc4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fc3" ordering="1" parent="-1f09110a:1315ad634dc:-7fc4" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fc2" ordering="2" parent="-1f09110a:1315ad634dc:-7fc4" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><BasicBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7faa" interfaceFunctionName="CurrentSensor" ordering="4" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=0;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="440.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fa7" ordering="1" parent="-1f09110a:1315ad634dc:-7faa" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fa9" ordering="1" parent="-1f09110a:1315ad634dc:-7faa" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="6.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7fa8" ordering="2" parent="-1f09110a:1315ad634dc:-7faa" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="26.0"/></ExplicitOutputPort><SplitBlock id="-1f09110a:1315ad634dc:-7f9c" ordering="5" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="227.0" y="417.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f99" ordering="2" parent="-1f09110a:1315ad634dc:-7f9c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f9b" ordering="1" parent="-1f09110a:1315ad634dc:-7f9c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f9a" ordering="1" parent="-1f09110a:1315ad634dc:-7f9c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7f98" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fc3" target="-1f09110a:1315ad634dc:-7f9b"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="380.0" y="420.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f97" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f6a" target="-1f09110a:1315ad634dc:-7f9a"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="150.0" y="420.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f9d" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f99" target="-1f09110a:1315ad634dc:-7fa7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="376.0" y="460.0"/><mxPoint as="targetPoint" x="230.0" y="420.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="230.0" y="460.0"/></Array></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7f8d" interfaceFunctionName="CMSCOPE" ordering="6" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 3"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-2 -20"/><data column="0" line="6" value="2 20"/><data column="0" line="7" value="0.250 0.250"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Positive Seq Voltage & Sequence Currents"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.25"/><data column="0" line="2" realPart="0.25"/><data column="0" line="3" realPart="-2.0"/><data column="0" line="4" realPart="2.0"/><data column="0" line="5" realPart="-20.0"/><data column="0" line="6" realPart="20.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="14" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="3.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="5.0"/><data column="0" line="12" realPart="7.0"/><data column="0" line="13" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="260.0"/></BasicBlock><ControlPort dataType="UNKNOW_TYPE" id="-75109587:131bf421888:-7f52" ordering="1" parent="-1f09110a:1315ad634dc:-7f8d" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-75109587:131bf421888:-7f54" ordering="1" parent="-1f09110a:1315ad634dc:-7f8d" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="3" dataType="REAL_MATRIX" id="-75109587:131bf421888:-7f53" ordering="2" parent="-1f09110a:1315ad634dc:-7f8d" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ExplicitLink id="-1f09110a:1315ad634dc:-7f7a" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fc2" target="-75109587:131bf421888:-7f54"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="304.0" y="270.0"/><mxPoint as="targetPoint" x="460.0" y="270.0"/></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="-1f09110a:1315ad634dc:-7f73" interfaceFunctionName="CLOCK_c" ordering="7" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="99.0"/><data column="1" line="0" realPart="-144.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f6f"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f6f"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-54.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f6b"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f6b"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="92.71066000000002"/><data column="1" line="0" realPart="-146.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="5.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f66"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f66"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="72.0"/><data column="0" line="2" realPart="104.71066000000002"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="-58.0"/><data column="0" line="1" realPart="-186.0"/><data column="0" line="2" realPart="-134.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="103.37732666666669"/><data column="0" line="1" realPart="129.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-150.0"/><data column="0" line="1" realPart="-120.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="106.04399333333335"/><data column="0" line="1" realPart="122.70999999999998"/><data column="0" line="2" realPart="82.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-150.0"/><data column="0" line="1" realPart="-40.0"/><data column="0" line="2" realPart="-40.0"/><data column="0" line="3" realPart="-10.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="470.0" y="180.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f5e" ordering="1" parent="-1f09110a:1315ad634dc:-7f73" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><CommandControlLink id="-1f09110a:1315ad634dc:-7f71" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f5e" target="-75109587:131bf421888:-7f52"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="490.0" y="224.0"/><mxPoint as="targetPoint" x="490.0" y="250.0"/></mxGeometry></CommandControlLink><BasicBlock dependsOnU="1" id="-1f09110a:1315ad634dc:-7f52" interfaceFunctionName="Switch" ordering="8" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=0;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.000001"/><data column="0" line="1" value="1000000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-6"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1000000.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="270.0" y="140.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f38" ordering="2" parent="-1f09110a:1315ad634dc:-7f52" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f37" ordering="1" parent="-1f09110a:1315ad634dc:-7f52" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f39" ordering="1" parent="-1f09110a:1315ad634dc:-7f52" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitInputPort><BasicBlock blockType="h" id="-1f09110a:1315ad634dc:-7f3d" interfaceFunctionName="STEP_FUNCTION" ordering="9" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.005"/><data column="0" line="1" value="-5"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-5.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.005"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f5b"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f5b"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="88.57143300000001"/><data column="1" line="0" realPart="-50.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f58"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-75109587:131bf421888:-7f58"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="92.00000299999999"/><data column="0" line="2" realPart="53.478395000000006"/><data column="0" line="3" realPart="53.478395000000006"/><data column="0" line="4" realPart="92.00000299999999"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-158.39289999999994"/><data column="0" line="2" realPart="-158.39289999999994"/><data column="0" line="3" realPart="-68.69677999999999"/><data column="0" line="4" realPart="-68.69677999999999"/><data column="0" line="5" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="104.57143300000001"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-40.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="210.0" y="200.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7c8a" ordering="1" parent="-1f09110a:1315ad634dc:-7f3d" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><GroundBlock angle="180" dependsOnU="1" id="-1f09110a:1315ad634dc:-7f1f" interfaceFunctionName="Ground" ordering="10" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;rotation=180;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="60.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f1e" ordering="1" parent="-1f09110a:1315ad634dc:-7f1f" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><SplitBlock id="-1f09110a:1315ad634dc:-7f1a" ordering="11" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="147.0" y="147.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f17" ordering="2" parent="-1f09110a:1315ad634dc:-7f1a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f19" ordering="1" parent="-1f09110a:1315ad634dc:-7f1a" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7f18" ordering="1" parent="-1f09110a:1315ad634dc:-7f1a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7f15" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f18" target="-1f09110a:1315ad634dc:-7f6f"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f1b" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f17" target="-1f09110a:1315ad634dc:-7f1e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="150.0" y="104.0"/><mxPoint as="targetPoint" x="150.0" y="150.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7f14" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f19" target="-1f09110a:1315ad634dc:-7f39"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="210.0" y="150.0"/><mxPoint x="240.0" y="150.0"/></Array></mxGeometry></ImplicitLink><ExplicitLink id="-1f09110a:1315ad634dc:-7efb" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7c8a" target="-1f09110a:1315ad634dc:-7f38"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="244.0" y="220.0"/><mxPoint as="targetPoint" x="260.0" y="170.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="260.0" y="220.0"/><mxPoint x="260.0" y="170.0"/></Array></mxGeometry></ExplicitLink><SplitBlock id="-1f09110a:1315ad634dc:-7ec6" ordering="12" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="337.0" y="157.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7ec3" ordering="2" parent="-1f09110a:1315ad634dc:-7ec6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7ec5" ordering="1" parent="-1f09110a:1315ad634dc:-7ec6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7ec4" ordering="1" parent="-1f09110a:1315ad634dc:-7ec6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7ec2" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f37" target="-1f09110a:1315ad634dc:-7ec5"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7ec7" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7ec3" target="-1f09110a:1315ad634dc:-7fc1"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="356.0" y="270.0"/><mxPoint as="targetPoint" x="336.734693877551" y="163.26530612244898"/><Array as="points" scilabClass="ScilabList"><mxPoint x="340.0" y="270.0"/></Array></mxGeometry></ImplicitLink><TextBlock id="-1f09110a:1315ad634dc:-7e0c" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Ea"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Ea"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Ea"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="90.0" y="210.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7e08" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.09"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.09"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.09"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="340.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7e05" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.075"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.075"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.075"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="670.0" y="270.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7e01" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Measure of positive<br>sequence voltage<br>&amp; sequence Currents"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Measure of positive<br>sequence voltage<br>&amp; sequence Currents"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Measure of positive<br>sequence voltage<br>&amp; sequence Currents"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="510.0" y="320.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7dff" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="240.0" y="240.0"/></TextBlock><TextBlock id="-1f09110a:1315ad634dc:-7dfd" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Switch1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Switch1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Switch1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="270.0" y="100.0"/></TextBlock><BasicBlock angle="90" dependsOnU="1" id="-1f09110a:1315ad634dc:-7fde" interfaceFunctionName="SineVoltage" ordering="13" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="130.0" y="200.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6e" ordering="1" parent="-1f09110a:1315ad634dc:-7fde" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6f" ordering="1" parent="-1f09110a:1315ad634dc:-7fde" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="-1f09110a:1315ad634dc:-7d8e" interfaceFunctionName="Inductor" ordering="14" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="830.0" y="270.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d70" ordering="1" parent="-1f09110a:1315ad634dc:-7d8e" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d6f" ordering="1" parent="-1f09110a:1315ad634dc:-7d8e" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><SplitBlock id="-1f09110a:1315ad634dc:-7d7e" ordering="15" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="617.0" y="157.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7d7c" ordering="1" parent="-1f09110a:1315ad634dc:-7d7e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7d7b" ordering="2" parent="-1f09110a:1315ad634dc:-7d7e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7d7d" ordering="1" parent="-1f09110a:1315ad634dc:-7d7e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7d7a" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f66" target="-1f09110a:1315ad634dc:-7d7d"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="640.0" y="160.0"/><mxPoint x="640.0" y="160.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7d79" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7ec4" target="-1f09110a:1315ad634dc:-7d7c"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7d7f" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7d6f" target="-1f09110a:1315ad634dc:-7d7b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="850.0" y="266.0"/><mxPoint as="targetPoint" x="620.0" y="160.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="850.0" y="120.0"/><mxPoint x="620.0" y="120.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="-1f09110a:1315ad634dc:-7d64" interfaceFunctionName="CurrentSensor" ordering="16" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=90;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="620.0" y="370.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d62" ordering="2" parent="-1f09110a:1315ad634dc:-7d64" style="ExplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d61" ordering="1" parent="-1f09110a:1315ad634dc:-7d64" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d63" ordering="1" parent="-1f09110a:1315ad634dc:-7d64" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitOutputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7d53" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7f67" target="-1f09110a:1315ad634dc:-7d61"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="640.0" y="314.0"/><mxPoint as="targetPoint" x="640.0" y="370.0"/></mxGeometry></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="-1f09110a:1315ad634dc:-7d46" interfaceFunctionName="CurrentSensor" ordering="17" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=90;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="830.0" y="370.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d44" ordering="2" parent="-1f09110a:1315ad634dc:-7d46" style="ExplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d43" ordering="1" parent="-1f09110a:1315ad634dc:-7d46" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d45" ordering="1" parent="-1f09110a:1315ad634dc:-7d46" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitOutputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7d2d" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7d70" target="-1f09110a:1315ad634dc:-7d43"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="850.0" y="314.0"/><mxPoint as="targetPoint" x="850.0" y="370.0"/></mxGeometry></ImplicitLink><SplitBlock id="-1f09110a:1315ad634dc:-7d2b" ordering="18" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="607.0" y="447.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7d29" ordering="1" parent="-1f09110a:1315ad634dc:-7d2b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7d28" ordering="2" parent="-1f09110a:1315ad634dc:-7d2b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-1f09110a:1315ad634dc:-7d2a" ordering="1" parent="-1f09110a:1315ad634dc:-7d2b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-1f09110a:1315ad634dc:-7d27" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7d63" target="-1f09110a:1315ad634dc:-7d2a"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="630.0" y="450.0"/><mxPoint x="630.0" y="450.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7d26" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fa9" target="-1f09110a:1315ad634dc:-7d29"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-1f09110a:1315ad634dc:-7d2c" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7d45" target="-1f09110a:1315ad634dc:-7d28"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="840.0" y="414.0"/><mxPoint as="targetPoint" x="610.0" y="450.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="840.0" y="480.0"/><mxPoint x="610.0" y="480.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnU="1" id="-1f09110a:1315ad634dc:-7d1b" interfaceFunctionName="MUX" ordering="19" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="multiplex" simulationFunctionType="C_OR_FORTRAN" style="MUX;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="3"/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="80.0" width="80.0" x="500.0" y="510.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d12" ordering="1" parent="-1f09110a:1315ad634dc:-7d1b" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="80.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="-2" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d11" ordering="2" parent="-1f09110a:1315ad634dc:-7d1b" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="36.0" y="80.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="-3" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d10" ordering="3" parent="-1f09110a:1315ad634dc:-7d1b" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="66.0" y="80.0"/></ExplicitInputPort><ExplicitOutputPort dataColumns="1" dataLines="0" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7d0f" ordering="1" parent="-1f09110a:1315ad634dc:-7d1b" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="36.0" y="-8.0"/></ExplicitOutputPort><ExplicitLink id="-1f09110a:1315ad634dc:-7cfe" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7fa8" target="-1f09110a:1315ad634dc:-7d12"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="424.0" y="470.0"/><mxPoint as="targetPoint" x="510.0" y="600.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="440.0" y="470.0"/><mxPoint x="440.0" y="630.0"/><mxPoint x="510.0" y="630.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-1f09110a:1315ad634dc:-7cfc" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7d62" target="-1f09110a:1315ad634dc:-7d11"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="540.0" y="594.0"/><mxPoint as="targetPoint" x="650.0" y="420.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="650.0" y="630.0"/><mxPoint x="540.0" y="630.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-1f09110a:1315ad634dc:-7cfb" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7d44" target="-1f09110a:1315ad634dc:-7d10"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="860.0" y="414.0"/><mxPoint as="targetPoint" x="570.0" y="590.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="860.0" y="620.0"/><mxPoint x="570.0" y="620.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-1f09110a:1315ad634dc:-7cfa" parent="-1f09110a:1315ad634dc:-8000" source="-1f09110a:1315ad634dc:-7d0f" target="-75109587:131bf421888:-7f53"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="540.0" y="506.0"/><mxPoint as="targetPoint" x="470.0" y="290.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="540.0" y="410.0"/><mxPoint x="420.0" y="410.0"/><mxPoint x="420.0" y="290.0"/></Array></mxGeometry></ExplicitLink><BasicBlock angle="90" dependsOnU="1" id="-1f09110a:1315ad634dc:-7fd4" interfaceFunctionName="Inductor" ordering="1" parent="-1f09110a:1315ad634dc:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00028647889"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.8647889E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.8647889E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="340.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6a" ordering="1" parent="-1f09110a:1315ad634dc:-7fd4" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-1f09110a:1315ad634dc:-7f6b" ordering="1" parent="-1f09110a:1315ad634dc:-7fd4" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort></root></mxGraphModel><mxCell as="defaultParent" id="-1f09110a:1315ad634dc:-8000" parent="-1f09110a:1315ad634dc:-7fff"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH11/EX11.5/result_example_11_5.txt b/Working_Examples/83/CH11/EX11.5/result_example_11_5.txt new file mode 100755 index 0000000..8c8e61c --- /dev/null +++ b/Working_Examples/83/CH11/EX11.5/result_example_11_5.txt @@ -0,0 +1,10 @@ + +Ia1=-j7.527 + Ia2=j4.301 + Ia0=j3.226 + + Ia=0.000 + j-0.000 + Ib=-10.243 + j4.839 + Ic=10.243 + j4.839 + + Voltage of the healthy phase Va=3Va1=0.968 diff --git a/Working_Examples/83/CH11/EX11.5/scilab-log-16140.txt b/Working_Examples/83/CH11/EX11.5/scilab-log-16140.txt new file mode 100644 index 0000000..40e7d63 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.5/scilab-log-16140.txt @@ -0,0 +1,30006 @@ +16140 || Initialization 83 +2 16140 || 83 | 112 | 118 || 0.000000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000200 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000300 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000400 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000500 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000600 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000700 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000800 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.000900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.000900 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.001900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.001900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.002900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.002900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.002900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.002900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.003900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.003900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.004900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.004900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005000 1.414000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.005900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.005900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.005900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.005900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.006900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.006900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.006900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.006900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.007900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.007900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.007900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.007900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.008900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.008900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.008900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.008900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.009900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.009900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.009900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.009900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.010900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.010900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.010900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.010900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.011900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.011900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.011900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.011900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.012900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.012900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.012900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.012900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.013900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.013900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.013900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.013900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.014900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.014900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.014900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.014900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.015900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.015900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.015900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.015900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.016900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.016900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.016900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.016900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.017900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.017900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.017900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.017900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.018900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.018900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.018900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.018900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.019900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.019900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.019900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.019900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.020900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.020900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.020900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.020900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.021900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.021900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.021900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.021900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.022900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.022900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.022900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.022900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.023900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.023900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.023900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.023900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.024900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.024900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.024900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.024900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.025900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.025900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.025900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.025900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.026900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.026900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.026900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.026900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.027900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.027900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.027900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.027900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.028900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.028900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.028900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.028900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.029900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.029900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.029900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.029900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.030900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.030900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.030900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.030900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.031900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.031900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.031900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.031900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.032900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.032900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.032900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.032900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.033900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.033900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.033900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.033900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.034900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.034900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.034900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.034900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.035900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.035900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.035900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.035900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.036900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.036900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.036900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.036900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.037900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.037900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.037900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.037900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.038900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.038900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.038900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.038900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.039900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.039900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.039900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.039900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.040900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.040900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.040900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.040900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.041900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.041900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.041900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.041900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.042900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.042900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.042900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.042900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.043900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.043900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.043900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.043900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.044900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.044900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.044900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.044900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.045900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.045900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.045900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.045900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.046900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.046900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.046900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.046900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.047900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.047900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.047900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.047900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.048900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.048900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.048900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.048900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.049900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.049900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.049900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.049900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.050900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.050900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.050900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.050900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.051900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.051900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.051900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.051900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.052900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.052900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.052900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.052900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.053900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.053900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.053900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.053900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.054900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.054900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.054900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.054900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.055900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.055900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.055900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.055900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.056900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.056900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.056900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.056900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.057900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.057900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.057900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.057900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.058900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.058900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.058900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.058900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.059900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.059900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.059900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.059900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.060900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.060900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.060900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.060900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.061900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.061900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.061900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.061900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.062900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.062900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.062900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.062900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.063900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.063900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.063900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.063900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.064900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.064900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.064900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.064900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.065900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.065900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.065900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.065900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.066900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.066900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.066900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.066900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.067900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.067900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.067900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.067900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.068900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.068900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.068900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.068900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.069900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.069900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.069900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.069900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.070900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.070900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.070900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.070900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.071900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.071900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.071900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.071900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.072900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.072900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.072900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.072900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.073900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.073900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.073900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.073900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.074900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.074900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.074900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.074900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.075900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.075900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.075900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.075900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.076900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.076900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.076900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.076900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.077900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.077900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.077900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.077900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.078900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.078900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.078900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.078900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.079900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.079900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.079900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.079900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.080900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.080900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.080900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.080900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.081900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.081900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.081900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.081900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.082900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.082900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.082900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.082900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.083900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.083900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.083900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.083900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.084900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.084900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.084900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.084900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.085900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.085900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.085900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.085900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.086900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.086900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.086900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.086900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.087900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.087900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.087900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.087900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.088900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.088900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.088900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.088900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.089900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.089900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.089900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.089900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.090900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.090900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.090900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.090900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.091900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.091900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.091900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.091900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.092900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.092900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.092900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.092900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.093900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.093900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.093900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.093900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.094900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.094900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.094900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.094900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.095900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.095900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.095900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.095900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.096900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.096900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.096900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.096900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.097900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.097900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.097900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.097900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.098900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.098900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.098900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.098900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.099900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.099900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.099900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.099900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.100900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.100900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.100900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.100900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.101900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.101900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.101900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.101900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.102900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.102900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.102900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.102900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.103900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.103900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.103900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.103900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.104900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.104900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.104900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.104900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.105900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.105900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.105900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.105900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.106900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.106900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.106900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.106900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.107900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.107900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.107900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.107900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.108900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.108900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.108900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.108900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.109900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.109900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.109900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.109900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.110900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.110900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.110900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.110900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.111900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.111900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.111900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.111900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.112900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.112900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.112900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.112900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.113900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.113900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.113900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.113900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.114900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.114900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.114900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.114900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.115900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.115900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.115900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.115900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.116900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.116900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.116900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.116900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.117900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.117900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.117900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.117900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.118900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.118900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.118900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.118900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.119900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.119900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.119900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.119900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.120900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.120900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.120900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.120900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.121900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.121900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.121900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.121900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.122900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.122900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.122900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.122900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.123900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.123900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.123900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.123900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.124900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.124900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.124900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.124900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.125900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.125900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.125900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.125900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.126900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.126900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.126900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.126900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.127900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.127900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.127900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.127900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.128900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.128900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.128900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.128900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.129900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.129900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.129900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.129900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.130900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.130900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.130900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.130900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.131900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.131900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.131900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.131900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.132900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.132900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.132900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.132900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.133900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.133900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.133900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.133900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.134900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.134900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.134900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.134900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.135900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.135900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.135900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.135900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.136900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.136900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.136900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.136900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.137900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.137900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.137900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.137900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.138900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.138900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.138900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.138900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.139900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.139900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.139900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.139900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.140900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.140900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.140900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.140900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.141900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.141900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.141900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.141900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.142900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.142900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.142900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.142900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.143900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.143900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.143900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.143900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.144900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.144900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.144900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.144900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.145900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.145900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.145900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.145900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.146900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.146900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.146900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.146900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.147900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.147900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.147900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.147900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.148900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.148900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.148900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.148900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.149900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.149900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.149900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.149900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.150900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.150900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.150900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.150900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.151900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.151900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.151900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.151900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.152900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.152900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.152900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.152900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.153900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.153900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.153900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.153900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.154900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.154900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.154900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.154900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.155900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.155900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.155900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.155900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.156900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.156900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.156900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.156900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.157900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.157900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.157900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.157900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.158900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.158900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.158900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.158900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.159900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.159900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.159900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.159900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.160900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.160900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.160900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.160900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.161900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.161900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.161900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.161900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.162900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.162900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.162900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.162900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.163900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.163900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.163900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.163900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.164900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.164900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.164900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.164900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.165900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.165900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.165900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.165900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.166900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.166900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.166900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.166900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.167900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.167900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.167900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.167900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.168900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.168900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.168900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.168900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.169900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.169900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.169900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.169900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.170900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.170900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.170900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.170900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.171900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.171900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.171900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.171900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.172900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.172900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.172900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.172900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.173900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.173900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.173900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.173900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.174900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.174900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.174900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.174900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.175900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.175900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.175900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.175900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.176900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.176900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.176900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.176900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.177900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.177900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.177900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.177900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.178900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.178900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.178900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.178900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.179900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.179900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.179900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.179900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.180900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.180900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.180900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.180900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.181900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.181900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.181900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.181900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.182900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.182900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.182900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.182900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.183900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.183900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.183900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.183900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.184900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.184900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.184900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.184900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.185900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.185900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.185900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.185900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.186900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.186900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.186900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.186900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.187900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.187900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.187900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.187900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.188900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.188900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.188900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.188900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.189900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.189900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.189900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.189900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.190900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.190900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.190900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.190900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.191900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.191900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.191900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.191900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.192900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.192900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.192900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.192900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.193900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.193900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.193900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.193900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.194900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.194900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.194900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.194900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.195900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.195900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.195900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.195900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.196900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.196900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.196900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.196900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.197900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.197900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.197900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.197900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.198900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.198900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.198900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.198900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.199900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.199900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.199900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.199900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.200900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.200900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.200900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.200900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.201900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.201900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.201900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.201900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.202900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.202900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.202900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.202900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.203900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.203900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.203900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.203900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.204900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.204900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.204900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.204900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.205900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.205900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.205900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.205900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.206900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.206900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.206900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.206900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.207900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.207900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.207900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.207900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.208900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.208900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.208900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.208900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.209900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.209900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.209900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.209900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.210900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.210900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.210900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.210900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.211900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.211900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.211900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.211900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.212900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.212900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.212900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.212900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.213900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.213900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.213900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.213900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.214900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.214900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.214900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.214900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.215900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.215900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.215900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.215900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.216900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.216900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.216900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.216900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.217900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.217900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.217900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.217900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.218900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.218900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.218900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.218900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.219900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.219900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.219900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.219900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.220900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.220900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.220900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.220900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.221900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.221900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.221900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.221900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.222900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.222900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.222900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.222900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.223900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.223900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.223900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.223900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.224900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.224900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.224900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.224900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.225900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.225900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.225900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.225900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.226900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.226900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.226900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.226900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.227900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.227900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.227900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.227900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.228900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.228900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.228900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.228900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.229900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.229900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.229900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.229900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.230900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.230900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.230900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.230900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.231900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.231900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.231900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.231900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.232900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.232900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.232900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.232900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.233900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.233900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.233900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.233900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.234900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.234900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.234900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.234900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.235900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.235900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.235900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.235900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.236900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.236900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.236900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.236900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.237900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.237900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.237900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.237900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.238900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.238900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.238900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.238900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239000 10.122087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239000 -4.338037 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.239900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.239900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.239900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.239900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.240900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.240900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.240900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.240900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.241900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.241900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.241900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.241900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242100 8.409565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242100 -3.604099 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.242900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.242900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.242900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.242900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.243900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.243900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.243900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.243900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.244900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.244900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.244900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.244900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.245900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.245900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.245900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.245900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.246900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.246900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.246900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.246900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.247900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.247900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.247900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.247900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.248900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.248900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.248900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.248900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 112 | 118 || 0.249900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 127 || 0.249900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 128 || 0.249900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 83 | 119 | 129 || 0.249900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +16140 || Ending 83 +16140 || Initialization 130 +2 16140 || 130 | 159 | 165 || 0.000000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000200 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000300 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000400 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000500 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000600 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000700 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000800 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.000900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.000900 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.001900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.001900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.002900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.002900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.002900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.002900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.003900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.003900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.004900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.004900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005000 1.414000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.005900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.005900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.005900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.005900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.006900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.006900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.006900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.006900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.007900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.007900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.007900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.007900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.008900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.008900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.008900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.008900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.009900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.009900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.009900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.009900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.010900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.010900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.010900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.010900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.011900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.011900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.011900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.011900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.012900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.012900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.012900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.012900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.013900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.013900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.013900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.013900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.014900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.014900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.014900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.014900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.015900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.015900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.015900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.015900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.016900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.016900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.016900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.016900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.017900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.017900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.017900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.017900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.018900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.018900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.018900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.018900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.019900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.019900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.019900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.019900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.020900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.020900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.020900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.020900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.021900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.021900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.021900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.021900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.022900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.022900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.022900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.022900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.023900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.023900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.023900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.023900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.024900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.024900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.024900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.024900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.025900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.025900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.025900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.025900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.026900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.026900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.026900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.026900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.027900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.027900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.027900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.027900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.028900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.028900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.028900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.028900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.029900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.029900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.029900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.029900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.030900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.030900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.030900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.030900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.031900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.031900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.031900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.031900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.032900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.032900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.032900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.032900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.033900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.033900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.033900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.033900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.034900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.034900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.034900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.034900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.035900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.035900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.035900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.035900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.036900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.036900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.036900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.036900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.037900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.037900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.037900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.037900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.038900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.038900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.038900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.038900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.039900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.039900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.039900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.039900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.040900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.040900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.040900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.040900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.041900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.041900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.041900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.041900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.042900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.042900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.042900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.042900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.043900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.043900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.043900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.043900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.044900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.044900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.044900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.044900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.045900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.045900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.045900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.045900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.046900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.046900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.046900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.046900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.047900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.047900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.047900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.047900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.048900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.048900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.048900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.048900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.049900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.049900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.049900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.049900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.050900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.050900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.050900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.050900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.051900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.051900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.051900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.051900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.052900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.052900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.052900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.052900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.053900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.053900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.053900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.053900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.054900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.054900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.054900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.054900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.055900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.055900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.055900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.055900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.056900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.056900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.056900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.056900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.057900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.057900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.057900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.057900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.058900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.058900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.058900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.058900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.059900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.059900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.059900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.059900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.060900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.060900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.060900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.060900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.061900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.061900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.061900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.061900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.062900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.062900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.062900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.062900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.063900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.063900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.063900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.063900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.064900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.064900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.064900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.064900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.065900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.065900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.065900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.065900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.066900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.066900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.066900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.066900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.067900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.067900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.067900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.067900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.068900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.068900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.068900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.068900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.069900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.069900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.069900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.069900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.070900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.070900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.070900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.070900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.071900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.071900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.071900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.071900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.072900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.072900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.072900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.072900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.073900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.073900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.073900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.073900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.074900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.074900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.074900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.074900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.075900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.075900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.075900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.075900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.076900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.076900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.076900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.076900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.077900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.077900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.077900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.077900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.078900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.078900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.078900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.078900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.079900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.079900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.079900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.079900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.080900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.080900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.080900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.080900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.081900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.081900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.081900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.081900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.082900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.082900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.082900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.082900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.083900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.083900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.083900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.083900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.084900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.084900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.084900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.084900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.085900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.085900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.085900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.085900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.086900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.086900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.086900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.086900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.087900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.087900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.087900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.087900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.088900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.088900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.088900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.088900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.089900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.089900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.089900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.089900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.090900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.090900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.090900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.090900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.091900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.091900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.091900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.091900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.092900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.092900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.092900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.092900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.093900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.093900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.093900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.093900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.094900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.094900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.094900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.094900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.095900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.095900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.095900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.095900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.096900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.096900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.096900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.096900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.097900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.097900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.097900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.097900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.098900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.098900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.098900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.098900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.099900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.099900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.099900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.099900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.100900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.100900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.100900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.100900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.101900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.101900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.101900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.101900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.102900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.102900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.102900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.102900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.103900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.103900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.103900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.103900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.104900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.104900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.104900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.104900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.105900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.105900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.105900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.105900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.106900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.106900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.106900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.106900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.107900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.107900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.107900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.107900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.108900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.108900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.108900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.108900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.109900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.109900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.109900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.109900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.110900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.110900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.110900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.110900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.111900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.111900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.111900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.111900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.112900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.112900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.112900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.112900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.113900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.113900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.113900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.113900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.114900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.114900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.114900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.114900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.115900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.115900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.115900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.115900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.116900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.116900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.116900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.116900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.117900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.117900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.117900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.117900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.118900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.118900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.118900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.118900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.119900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.119900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.119900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.119900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.120900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.120900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.120900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.120900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.121900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.121900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.121900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.121900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.122900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.122900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.122900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.122900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.123900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.123900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.123900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.123900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.124900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.124900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.124900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.124900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.125900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.125900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.125900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.125900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.126900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.126900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.126900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.126900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.127900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.127900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.127900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.127900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.128900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.128900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.128900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.128900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.129900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.129900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.129900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.129900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.130900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.130900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.130900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.130900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.131900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.131900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.131900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.131900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.132900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.132900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.132900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.132900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.133900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.133900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.133900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.133900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.134900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.134900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.134900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.134900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.135900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.135900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.135900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.135900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.136900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.136900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.136900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.136900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.137900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.137900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.137900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.137900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.138900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.138900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.138900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.138900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.139900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.139900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.139900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.139900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.140900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.140900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.140900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.140900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.141900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.141900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.141900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.141900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.142900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.142900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.142900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.142900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.143900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.143900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.143900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.143900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.144900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.144900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.144900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.144900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.145900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.145900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.145900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.145900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.146900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.146900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.146900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.146900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.147900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.147900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.147900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.147900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.148900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.148900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.148900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.148900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.149900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.149900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.149900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.149900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.150900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.150900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.150900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.150900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.151900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.151900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.151900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.151900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.152900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.152900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.152900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.152900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.153900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.153900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.153900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.153900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.154900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.154900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.154900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.154900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.155900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.155900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.155900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.155900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.156900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.156900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.156900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.156900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.157900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.157900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.157900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.157900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.158900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.158900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.158900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.158900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.159900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.159900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.159900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.159900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.160900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.160900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.160900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.160900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.161900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.161900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.161900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.161900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.162900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.162900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.162900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.162900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.163900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.163900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.163900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.163900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.164900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.164900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.164900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.164900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.165900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.165900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.165900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.165900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.166900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.166900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.166900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.166900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.167900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.167900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.167900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.167900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.168900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.168900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.168900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.168900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.169900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.169900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.169900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.169900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.170900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.170900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.170900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.170900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.171900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.171900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.171900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.171900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.172900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.172900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.172900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.172900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.173900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.173900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.173900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.173900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.174900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.174900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.174900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.174900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.175900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.175900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.175900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.175900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.176900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.176900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.176900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.176900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.177900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.177900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.177900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.177900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.178900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.178900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.178900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.178900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.179900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.179900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.179900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.179900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.180900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.180900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.180900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.180900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.181900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.181900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.181900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.181900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.182900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.182900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.182900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.182900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.183900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.183900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.183900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.183900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.184900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.184900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.184900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.184900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.185900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.185900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.185900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.185900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.186900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.186900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.186900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.186900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.187900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.187900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.187900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.187900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.188900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.188900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.188900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.188900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.189900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.189900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.189900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.189900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.190900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.190900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.190900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.190900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.191900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.191900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.191900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.191900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.192900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.192900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.192900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.192900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.193900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.193900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.193900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.193900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.194900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.194900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.194900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.194900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.195900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.195900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.195900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.195900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.196900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.196900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.196900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.196900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.197900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.197900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.197900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.197900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.198900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.198900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.198900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.198900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.199900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.199900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.199900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.199900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.200900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.200900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.200900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.200900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.201900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.201900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.201900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.201900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.202900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.202900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.202900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.202900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.203900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.203900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.203900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.203900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.204900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.204900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.204900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.204900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.205900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.205900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.205900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.205900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.206900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.206900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.206900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.206900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.207900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.207900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.207900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.207900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.208900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.208900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.208900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.208900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.209900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.209900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.209900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.209900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.210900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.210900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.210900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.210900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.211900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.211900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.211900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.211900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.212900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.212900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.212900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.212900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.213900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.213900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.213900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.213900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.214900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.214900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.214900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.214900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.215900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.215900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.215900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.215900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.216900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.216900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.216900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.216900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.217900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.217900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.217900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.217900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.218900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.218900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.218900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.218900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.219900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.219900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.219900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.219900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.220900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.220900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.220900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.220900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.221900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.221900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.221900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.221900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.222900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.222900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.222900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.222900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.223900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.223900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.223900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.223900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.224900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.224900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.224900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.224900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.225900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.225900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.225900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.225900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.226900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.226900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.226900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.226900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.227900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.227900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.227900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.227900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.228900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.228900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.228900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.228900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.229900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.229900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.229900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.229900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.230900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.230900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.230900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.230900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.231900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.231900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.231900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.231900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.232900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.232900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.232900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.232900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.233900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.233900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.233900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.233900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.234900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.234900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.234900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.234900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.235900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.235900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.235900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.235900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.236900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.236900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.236900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.236900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.237900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.237900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.237900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.237900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.238900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.238900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.238900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.238900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239000 10.122087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239000 -4.338037 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.239900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.239900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.239900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.239900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.240900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.240900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.240900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.240900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.241900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.241900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.241900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.241900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242100 8.409565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242100 -3.604099 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.242900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.242900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.242900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.242900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.243900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.243900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.243900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.243900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.244900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.244900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.244900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.244900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.245900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.245900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.245900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.245900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.246900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.246900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.246900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.246900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.247900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.247900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.247900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.247900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.248900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.248900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.248900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.248900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 159 | 165 || 0.249900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 174 || 0.249900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 175 || 0.249900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 16140 || 130 | 166 | 176 || 0.249900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +16140 || Ending 130 +16140 || Initialization 177 +2 16140 || 177 | 206 | 212 || 0.000000 -0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000200 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000300 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000400 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000500 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000600 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000700 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000800 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.000900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.000900 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.001900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.001900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.002900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.002900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.002900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.002900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.003900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.003900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.004900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.004900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005000 -0.000000 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005100 -0.334303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.005900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.005900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.005900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.005900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.006900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.006900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.006900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.006900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.007900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.007900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.007900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.007900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008300 5.234709 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008500 4.064073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008600 -9.629925 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.008900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.008900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.008900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.008900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.009900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.009900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.009900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.009900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010100 4.558946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.010900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.010900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.010900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.010900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011600 5.329323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.011900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.011900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.011900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.011900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012700 4.021794 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.012900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.012900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.012900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.012900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.013900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.013900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.013900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.013900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014400 -1.994130 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.014900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.014900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.014900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.014900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015100 -0.191121 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.015900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.015900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.015900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.015900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016000 3.288999 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.016900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.016900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.016900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.016900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.017900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.017900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.017900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.017900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018600 -5.502905 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018700 -5.581524 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.018900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.018900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.018900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.018900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.019900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.019900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.019900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.019900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.020900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.020900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.020900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.020900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021000 -5.784020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021600 9.326474 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.021900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.021900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.021900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.021900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.022900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.022900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.022900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.022900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023800 3.917921 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.023900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.023900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.023900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.023900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024200 -1.134339 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.024900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.024900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.024900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.024900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025100 -0.334303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.025900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.025900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.025900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.025900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.026900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.026900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.026900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.026900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.027900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.027900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.027900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.027900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028300 5.234709 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028600 -9.629925 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.028900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.028900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.028900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.028900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.029900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.029900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.029900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.029900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030100 4.558946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.030900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.030900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.030900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.030900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031600 5.329323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.031900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.031900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.031900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.031900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032700 4.021794 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.032900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.032900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.032900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.032900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.033900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.033900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.033900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.033900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034400 -1.994130 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.034900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.034900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.034900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.034900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035100 -0.191121 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.035900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.035900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.035900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.035900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036000 3.288999 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.036900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.036900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.036900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.036900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.037900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.037900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.037900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.037900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038600 -5.502905 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038700 -5.581524 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.038900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.038900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.038900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.038900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.039900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.039900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.039900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.039900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.040900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.040900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.040900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.040900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041000 -5.784020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041600 9.326474 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.041900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.041900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.041900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.041900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.042900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.042900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.042900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.042900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043800 3.917921 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.043900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.043900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.043900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.043900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044200 -1.134339 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.044900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.044900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.044900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.044900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045100 -0.334303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.045900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.045900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.045900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.045900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.046900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.046900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.046900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.046900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.047900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.047900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.047900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.047900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048600 -9.629925 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.048900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.048900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.048900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.048900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.049900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.049900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.049900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.049900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050100 4.558946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.050900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.050900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.050900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.050900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051600 5.329323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.051900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.051900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.051900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.051900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052700 4.021794 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.052900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.052900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.052900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.052900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.053900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.053900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.053900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.053900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054400 -1.994130 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.054900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.054900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.054900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.054900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055100 -0.191121 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.055900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.055900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.055900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.055900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.056900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.056900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.056900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.056900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.057900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.057900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.057900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.057900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058600 -5.502905 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058700 -5.581524 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.058900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.058900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.058900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.058900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.059900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.059900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.059900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.059900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.060900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.060900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.060900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.060900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061000 -5.784020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061600 9.326474 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.061900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.061900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.061900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.061900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.062900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.062900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.062900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.062900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.063900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.063900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.063900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.063900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064200 -1.134339 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.064900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.064900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.064900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.064900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065100 -0.334303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.065900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.065900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.065900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.065900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.066900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.066900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.066900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.066900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.067900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.067900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.067900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.067900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.068900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.068900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.068900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.068900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.069900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.069900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.069900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.069900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070100 4.558946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.070900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.070900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.070900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.070900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071600 5.329323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.071900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.071900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.071900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.071900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072700 4.021794 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.072900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.072900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.072900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.072900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.073900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.073900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.073900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.073900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.074900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.074900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.074900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.074900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.075900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.075900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.075900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.075900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.076900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.076900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.076900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.076900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.077900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.077900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.077900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.077900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078600 -5.502905 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078700 -5.581524 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.078900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.078900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.078900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.078900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.079900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.079900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.079900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.079900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.080900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.080900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.080900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.080900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081000 -5.784020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.081900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.081900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.081900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.081900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.082900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.082900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.082900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.082900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.083900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.083900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.083900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.083900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084200 -1.134339 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.084900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.084900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.084900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.084900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085100 -0.334303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.085900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.085900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.085900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.085900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.086900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.086900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.086900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.086900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.087900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.087900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.087900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.087900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.088900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.088900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.088900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.088900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.089900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.089900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.089900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.089900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090100 4.558946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.090900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.090900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.090900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.090900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091600 5.329323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.091900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.091900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.091900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.091900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092700 4.021794 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.092900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.092900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.092900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.092900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.093900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.093900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.093900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.093900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.094900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.094900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.094900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.094900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.095900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.095900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.095900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.095900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.096900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.096900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.096900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.096900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.097900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.097900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.097900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.097900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098600 -5.502905 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098700 -5.581524 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.098900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.098900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.098900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.098900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.099900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.099900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.099900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.099900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.100900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.100900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.100900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.100900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101000 -5.784020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.101900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.101900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.101900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.101900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.102900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.102900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.102900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.102900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.103900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.103900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.103900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.103900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104200 -1.134339 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.104900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.104900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.104900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.104900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105100 -0.334303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.105900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.105900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.105900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.105900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.106900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.106900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.106900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.106900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.107900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.107900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.107900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.107900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.108900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.108900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.108900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.108900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.109900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.109900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.109900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.109900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110100 4.558947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.110900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.110900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.110900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.110900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111600 5.329323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.111900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.111900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.111900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.111900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112700 4.021795 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.112900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.112900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.112900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.112900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.113900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.113900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.113900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.113900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.114900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.114900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.114900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.114900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.115900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.115900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.115900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.115900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.116900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.116900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.116900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.116900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.117900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.117900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.117900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.117900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118600 -5.502905 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118700 -5.581524 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.118900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.118900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.118900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.118900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.119900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.119900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.119900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.119900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.120900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.120900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.120900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.120900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121000 -5.784019 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.121900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.121900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.121900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.121900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.122900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.122900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.122900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.122900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.123900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.123900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.123900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.123900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124200 -1.134339 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.124900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.124900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.124900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.124900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125100 -0.334303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.125900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.125900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.125900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.125900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.126900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.126900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.126900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.126900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.127900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.127900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.127900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.127900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.128900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.128900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.128900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.128900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.129900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.129900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.129900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.129900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130100 4.558947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.130900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.130900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.130900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.130900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131600 5.329324 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.131900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.131900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.131900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.131900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132700 4.021795 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.132900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.132900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.132900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.132900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.133900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.133900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.133900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.133900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.134900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.134900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.134900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.134900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.135900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.135900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.135900 -1.696821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.135900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.136900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.136900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.136900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.136900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.137900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.137900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.137900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.137900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138600 -5.502904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138700 -5.581523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.138900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.138900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.138900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.138900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.139900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.139900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.139900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.139900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.140900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.140900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.140900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.140900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141000 -5.784019 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.141900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.141900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.141900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.141900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.142900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.142900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.142900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.142900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.143900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.143900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.143900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.143900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144200 -1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.144900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.144900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.144900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.144900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145100 -0.334304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.145900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.145900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.145900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.145900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.146900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.146900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.146900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.146900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.147900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.147900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.147900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.147900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.148900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.148900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.148900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.148900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149600 -10.558884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.149900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.149900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.149900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.149900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150100 4.558947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.150900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.150900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.150900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.150900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151600 5.329324 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.151900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.151900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.151900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.151900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152700 4.021795 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.152900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.152900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.152900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.152900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.153900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.153900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.153900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.153900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.154900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.154900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.154900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.154900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.155900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.155900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.155900 -1.696821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.155900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.156900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.156900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.156900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.156900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.157900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.157900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.157900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.157900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158600 -5.502904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158700 -5.581523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.158900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.158900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.158900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.158900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.159900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.159900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.159900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.159900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.160900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.160900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.160900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.160900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161000 -5.784019 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.161900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.161900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.161900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.161900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.162900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.162900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.162900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.162900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.163900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.163900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.163900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.163900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164200 -1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.164900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.164900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.164900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.164900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165100 -0.334304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.165900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.165900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.165900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.165900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.166900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.166900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.166900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.166900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.167900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.167900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.167900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.167900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.168900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.168900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.168900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.168900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169600 -10.558885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.169900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.169900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.169900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.169900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170100 4.558947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170600 -10.454268 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.170900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.170900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.170900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.170900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171600 5.329324 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.171900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.171900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.171900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.171900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172700 4.021795 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.172900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.172900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.172900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.172900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173500 2.760932 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.173900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.173900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.173900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.173900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.174900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.174900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.174900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.174900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.175900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.175900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.175900 -1.696821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.175900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.176900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.176900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.176900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.176900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.177900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.177900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.177900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.177900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178600 -5.502904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178700 -5.581523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.178900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.178900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.178900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.178900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.179900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.179900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.179900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.179900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.180900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.180900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.180900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.180900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181000 -5.784019 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.181900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.181900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.181900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.181900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.182900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.182900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.182900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.182900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.183900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.183900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.183900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.183900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184200 -1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.184900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.184900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.184900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.184900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185100 -0.334304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.185900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.185900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.185900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.185900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.186900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.186900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.186900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.186900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187800 -8.200461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187800 3.514483 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.187900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.187900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.187900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.187900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.188900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.188900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.188900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.188900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189600 -10.558885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.189900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.189900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.189900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.189900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190100 4.558947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190600 -10.454269 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.190900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.190900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.190900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.190900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191600 5.329324 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.191900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.191900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.191900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.191900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192400 3.324944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192700 4.021795 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.192900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.192900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.192900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.192900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193500 2.760933 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.193900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.193900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.193900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.193900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.194900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.194900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.194900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.194900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.195900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.195900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.195900 -1.696821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.195900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.196900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.196900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.196900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.196900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.197900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.197900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.197900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.197900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198600 -5.502904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198700 -5.581523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.198900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.198900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.198900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.198900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.199900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.199900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.199900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.199900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.200900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.200900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.200900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.200900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201000 -5.784019 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.201900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.201900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.201900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.201900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.202900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.202900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.202900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.202900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.203900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.203900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.203900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.203900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204200 -1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.204900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.204900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.204900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.204900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205100 -0.334304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.205900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.205900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.205900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.205900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.206900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.206900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.206900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.206900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207800 -8.200462 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207800 3.514484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.207900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.207900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.207900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.207900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.208900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.208900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.208900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.208900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209600 -10.558885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.209900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.209900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.209900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.209900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210100 4.558947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210600 -10.454269 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.210900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.210900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.210900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.210900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211600 5.329324 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.211900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.211900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.211900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.211900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212400 3.324945 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212700 4.021795 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.212900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.212900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.212900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.212900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213500 2.760933 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.213900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.213900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.213900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.213900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.214900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.214900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.214900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.214900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.215900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.215900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.215900 -1.696821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.215900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216400 4.531681 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.216900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.216900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.216900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.216900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.217900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.217900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.217900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.217900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218600 -5.502904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218700 -5.581523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.218900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.218900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.218900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.218900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.219900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.219900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.219900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.219900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.220900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.220900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.220900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.220900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221000 -5.784019 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.221900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.221900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.221900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.221900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.222900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.222900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.222900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.222900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.223900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.223900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.223900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.223900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224200 -1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224700 -0.572336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.224900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.224900 0.334301 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.224900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.224900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225100 -0.334304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.225900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.225900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.225900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.225900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.226900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.226900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.226900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.226900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227800 -8.200462 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227800 3.514484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.227900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.227900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.227900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.227900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.228900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.228900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.228900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.228900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229600 -10.558885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.229900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.229900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.229900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.229900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230000 -10.642796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230000 6.081598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230000 4.561198 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230100 -10.637542 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230100 6.078595 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230100 4.558947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230200 -10.621790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230200 6.069594 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230200 4.552196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230300 -10.595555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230300 6.054603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230300 4.540952 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230400 -0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230400 -10.558864 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230400 6.033637 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230400 4.525228 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230500 -0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230500 -10.511753 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230500 6.006716 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230500 4.505037 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230600 -0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230600 -10.454269 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230600 5.973868 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230600 4.480401 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230700 -0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230700 -10.386466 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230700 5.935124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230700 4.451343 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230800 -10.308414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230800 5.890522 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230800 4.417892 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.230900 -0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.230900 -10.220188 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.230900 5.840107 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.230900 4.380080 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231000 -0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231000 -10.121877 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231000 5.783930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231000 4.337947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231100 -10.013577 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231100 5.722044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231100 4.291533 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231200 -0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231200 -9.895394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231200 5.654511 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231200 4.240883 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231300 -0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231300 -9.767446 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231300 5.581398 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231300 4.186048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231400 -0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231400 -9.629858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231400 5.502776 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231400 4.127082 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231500 -0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231500 -9.482766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231500 5.418724 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231500 4.064043 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231600 -0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231600 -9.326316 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231600 5.329324 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231600 3.996993 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231700 -0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231700 -9.160662 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231700 5.234664 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231700 3.925998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231800 -0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231800 -8.985966 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231800 5.134838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231800 3.851128 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.231900 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.231900 -8.802403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.231900 5.029944 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.231900 3.772458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232000 -0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232000 -8.610152 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232000 4.920087 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232000 3.690065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232100 -0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232100 -8.409405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232100 4.805374 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232100 3.604031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232200 -0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232200 -8.200359 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232200 4.685919 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232200 3.514440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232300 -0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232300 -7.983221 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232300 4.561840 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232300 3.421380 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232400 -0.312246 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232400 -7.758204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232400 4.433259 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232400 3.324945 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232500 -0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232500 -7.525531 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232500 4.300303 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232500 3.225227 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232600 -0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232600 -7.285431 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232600 4.163103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232600 3.122327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232700 -0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232700 -7.038140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232700 4.021795 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232700 3.016346 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232800 -0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232800 -6.783904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232800 3.876516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232800 2.907387 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.232900 -0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.232900 -6.522972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.232900 3.727412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.232900 2.795559 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233000 -0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233000 -6.255602 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233000 3.574630 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233000 2.680972 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233100 -0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233100 -5.982059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233100 3.418319 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233100 2.563740 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233200 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233200 -5.702612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233200 3.258635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233200 2.443976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233300 -0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233300 -5.417536 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233300 3.095735 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233300 2.321801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233400 -0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233400 -5.127114 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233400 2.929779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233400 2.197335 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233500 -0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233500 -4.831632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233500 2.760933 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233500 2.070699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233600 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233600 -4.531381 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233600 2.589361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233600 1.942020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233700 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233700 -4.226658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233700 2.415233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233700 1.811425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233800 -0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233800 -3.917763 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233800 2.238722 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233800 1.679041 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.233900 -0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.233900 -3.605004 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.233900 2.060002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.233900 1.545002 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234000 -0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234000 -3.288687 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234000 1.879250 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234000 1.409437 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234100 -0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234100 -2.969125 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234100 1.696643 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234100 1.272482 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234200 -0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234200 -2.646632 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234200 1.512361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234200 1.134271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234300 -0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234300 -2.321527 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234300 1.326587 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234300 0.994940 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234400 -0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234400 -1.994131 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234400 1.139503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234400 0.854627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234500 -0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234500 -1.664766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234500 0.951295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234500 0.713471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234600 -1.333757 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234600 0.762147 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234600 0.571610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234700 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234700 -1.001432 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234700 0.572247 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234700 0.429185 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234800 -0.668117 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234800 0.381781 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234800 0.286336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.234900 -0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.234900 -0.334143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.234900 0.190939 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.234900 0.143204 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235000 0.000159 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235000 -0.000091 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235000 -0.000068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235100 -0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235100 0.334461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235300 -0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235300 1.001747 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235300 -0.572427 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235400 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235400 1.334072 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235400 -0.762327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235400 -0.571745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235500 -0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235500 1.665081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235500 -0.951475 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235500 -0.713606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235600 -0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235600 1.994445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235600 -1.139683 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235700 -0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235800 -0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235800 -1.512540 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.235900 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.235900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.235900 -1.696821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.235900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236000 -0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236000 3.288998 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236000 -1.879428 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236100 -0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236100 3.605314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236100 -2.060179 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236100 -1.545134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236200 -0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236200 3.918071 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236200 -2.238898 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236200 -1.679173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236300 -0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236300 4.226961 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236300 -2.415407 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236300 -1.811555 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236400 -0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236400 4.531680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236400 -2.589532 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236400 -1.942149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236500 -0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236500 4.831929 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236600 -0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236600 -2.929948 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236700 -0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236700 5.417829 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236700 -3.095902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236800 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236800 5.702902 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236800 -3.258801 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.236900 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.236900 5.982347 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.236900 -3.418484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.236900 -2.563863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237000 -0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237000 6.255888 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237000 -3.574793 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237100 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237100 6.523254 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237100 -3.727574 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237100 -2.795680 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237200 -0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237200 6.784183 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237200 -3.876676 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237200 -2.907507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237300 -0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237300 7.038417 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237300 -4.021953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237400 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237400 7.285705 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237400 -4.163260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237400 -3.122445 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237500 -0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237500 7.525802 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237500 -4.300458 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237500 -3.225344 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237600 -0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237600 7.758471 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237600 -4.433412 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237600 -3.325059 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237700 -0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237700 7.983484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237700 -4.561991 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237700 -3.421493 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237800 -0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237800 8.200619 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237800 -4.686068 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237800 -3.514551 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.237900 -0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.237900 8.409660 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.237900 -4.805520 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.237900 -3.604140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238000 -0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238000 8.610403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238000 -4.920230 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238000 -3.690173 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238100 -0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238100 8.802649 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238100 -5.030085 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238100 -3.772564 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238200 -0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238200 8.986208 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238200 -5.134976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238200 -3.851232 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238300 -0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238300 9.160899 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238300 -5.234799 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238300 -3.926100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238400 -0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238400 9.326549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238400 -5.329457 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238400 -3.997093 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238500 -0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238500 9.482996 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238500 -5.418855 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238500 -4.064141 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238600 -0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238600 9.630083 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238600 -5.502904 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238600 -4.127178 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238700 -0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238700 9.767666 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238700 -5.581523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238700 -4.186143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238800 -0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238800 9.895610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238800 -5.654634 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238800 -4.240976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.238900 -0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.238900 10.013788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.238900 -5.722165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.238900 -4.291624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239000 -0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239000 10.122084 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239000 -5.784048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239000 -4.338036 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239100 10.220390 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239100 -5.840223 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239100 -4.380167 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239200 -0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239200 10.308610 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239200 -5.890635 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239200 -4.417976 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239300 -0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239300 10.386658 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239300 -5.935233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239300 -4.451425 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239400 10.454456 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239400 -5.973975 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239400 -4.480481 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239500 -0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239500 10.511936 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239500 -6.006821 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239500 -4.505115 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239600 -0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239600 10.559042 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239600 -6.033738 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239600 -4.525304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239700 -0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239700 10.595728 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239700 -6.054702 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239700 -4.541026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239800 10.621957 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239800 -6.069690 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239800 -4.552267 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.239900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.239900 10.637704 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.239900 -6.078688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.239900 -4.559016 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240000 10.642953 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240000 -6.081688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240000 -4.561266 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240100 10.637699 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240100 -6.078685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240100 -4.559014 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240200 10.621947 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240200 -6.069684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240200 -4.552263 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240300 10.595713 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240300 -6.054693 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240300 -4.541020 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240400 0.057172 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240400 10.559022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240400 -6.033727 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240400 -4.525295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240500 0.071357 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240500 10.511910 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240500 -6.006806 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240500 -4.505104 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240600 0.085473 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240600 10.454426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240600 -5.973958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240600 -4.480468 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240700 0.099505 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240700 10.386624 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240700 -5.935213 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240700 -4.451410 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240800 10.308571 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240800 -5.890612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240800 -4.417959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.240900 0.127260 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.240900 10.220345 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.240900 -5.840197 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.240900 -4.380148 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241000 0.140953 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241000 10.122034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241000 -5.784019 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241000 -4.338015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241100 10.013734 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241100 -5.722134 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241100 -4.291600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241200 0.167916 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241200 9.895552 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241200 -5.654601 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241200 -4.240951 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241300 0.181155 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241300 9.767603 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241300 -5.581487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241300 -4.186116 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241400 0.194214 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241400 9.630015 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241400 -5.502866 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241400 -4.127149 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241500 0.207081 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241500 9.482924 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241500 -5.418814 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241500 -4.064110 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241600 0.219746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241600 9.326473 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241600 -5.329413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241600 -3.997060 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241700 0.232193 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241700 9.160819 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241700 -5.234754 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241700 -3.926065 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241800 0.244410 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241800 8.986124 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241800 -5.134928 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241800 -3.851196 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.241900 0.256386 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.241900 8.802560 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.241900 -5.030034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.241900 -3.772526 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242000 0.268109 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242000 8.610309 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242000 -4.920177 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242000 -3.690133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242100 0.279567 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242100 8.409562 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242100 -4.805464 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242100 -3.604098 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242200 0.290746 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242200 8.200516 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242200 -4.686009 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242200 -3.514507 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242300 0.301645 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242300 7.983378 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242300 -4.561930 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242300 -3.421448 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242400 0.312247 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242400 7.758361 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242400 -4.433349 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242400 -3.325012 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242500 0.322535 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242500 7.525688 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242500 -4.300393 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242500 -3.225295 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242600 0.332506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242600 7.285588 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242600 -4.163193 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242600 -3.122395 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242700 0.342151 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242700 7.038298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242700 -4.021884 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242700 -3.016413 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242800 0.351458 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242800 6.784061 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242800 -3.876606 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242800 -2.907455 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.242900 0.360416 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.242900 6.523129 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.242900 -3.727502 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.242900 -2.795627 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243000 0.369020 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243000 6.255759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243000 -3.574720 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243000 -2.681040 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243100 0.377257 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243100 5.982216 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243100 -3.418409 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243100 -2.563807 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243200 0.385125 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243200 5.702769 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243200 -3.258725 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243200 -2.444044 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243300 0.392613 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243300 5.417694 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243300 -3.095825 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243400 0.399712 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243400 5.127271 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243400 -2.929869 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243400 -2.197402 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243500 0.406413 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243500 4.831789 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243500 -2.761022 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243600 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243600 4.531538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243700 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243700 4.226815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243700 -2.415323 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243700 -1.811492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243800 0.424099 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243800 3.917920 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243800 -2.238812 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243800 -1.679109 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.243900 0.429166 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.243900 3.605161 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.243900 -2.060092 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.243900 -1.545069 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244000 0.433806 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244000 3.288845 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244000 -1.879340 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244000 -1.409505 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244100 0.438022 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244100 2.969282 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244100 -1.696733 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244100 -1.272550 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244200 0.441800 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244200 2.646790 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244200 -1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244200 -1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244300 0.445146 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244300 2.321685 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244300 -1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244300 -0.995008 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244400 0.448052 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244400 1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244400 -1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244400 -0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244500 0.450511 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244500 1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244500 -0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244500 -0.713538 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244600 1.333914 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244700 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244700 -0.572336 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244700 -0.429252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244800 0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.244900 0.455904 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.244900 0.334300 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.244900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.244900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245100 0.455902 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245100 -0.334304 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245100 0.191031 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245100 0.143273 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245200 -0.668275 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245200 0.381872 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245200 0.286404 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245300 0.454105 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245300 -1.001590 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245300 0.572337 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245400 0.452532 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245500 0.450513 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245500 -1.664923 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245600 0.448048 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245600 -1.994288 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245600 1.139593 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245600 0.854695 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245700 0.445141 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245700 -2.321684 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245700 1.326677 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245700 0.995007 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245800 0.441799 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245800 -2.646788 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245800 1.512451 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245800 1.134338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.245900 0.438018 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.245900 -2.969280 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.245900 1.696732 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.245900 1.272549 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246000 0.433804 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246000 -3.288841 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246000 1.879338 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246000 1.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246100 0.429165 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246100 -3.605156 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246100 2.060089 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246100 1.545067 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246200 0.424097 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246200 -3.917913 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246200 2.238808 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246200 1.679106 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246300 0.418615 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246300 -4.226804 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246300 2.415317 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246300 1.811487 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246400 0.412718 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246400 -4.531523 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246400 2.589442 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246400 1.942081 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246500 0.406412 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246500 -4.831772 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246500 2.761013 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246500 2.070759 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246600 0.399706 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246600 -5.127252 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246600 2.929858 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246600 2.197394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246700 0.392605 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246700 -5.417672 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246700 3.095813 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246700 2.321859 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246800 0.385122 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246800 -5.702745 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246800 3.258711 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246800 2.444034 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.246900 0.377255 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.246900 -5.982190 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.246900 3.418394 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.246900 2.563796 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247000 0.369015 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247000 -6.255731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247000 3.574703 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247000 2.681027 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247100 0.360411 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247100 -6.523097 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247100 3.727484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247100 2.795613 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247200 0.351453 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247200 -6.784026 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247200 3.876586 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247200 2.907440 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247300 0.342147 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247300 -7.038260 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247300 4.021863 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247300 3.016397 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247400 0.332503 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247400 -7.285547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247400 4.163170 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247400 3.122377 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247500 0.322531 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247500 -7.525644 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247500 4.300368 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247500 3.225276 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247600 0.312240 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247600 -7.758314 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247600 4.433322 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247600 3.324992 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247700 0.301642 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247700 -7.983327 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247700 4.561901 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247700 3.421426 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247800 0.290747 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247800 -8.200462 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247800 4.685978 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247800 3.514484 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.247900 0.279564 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.247900 -8.409503 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.247900 4.805430 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.247900 3.604073 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248000 0.268100 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248000 -8.610246 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248000 4.920140 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248000 3.690105 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248100 0.256379 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248100 -8.802492 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248100 5.029995 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248100 3.772496 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248200 0.244403 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248200 -8.986051 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248200 5.134886 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248200 3.851165 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248300 0.232186 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248300 -9.160742 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248300 5.234710 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248300 3.926032 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248400 0.219740 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248400 -9.326392 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248400 5.329367 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248400 3.997025 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248500 0.207076 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248500 -9.482838 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248500 5.418765 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248500 4.064074 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248600 0.194208 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248600 -9.629926 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248600 5.502815 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248600 4.127111 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248700 0.181148 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248700 -9.767509 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248700 5.581434 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248700 4.186075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248800 0.167910 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248800 -9.895453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248800 5.654544 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248800 4.240908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.248900 0.154506 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.248900 -10.013631 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.248900 5.722075 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.248900 4.291556 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249000 0.140949 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249000 -10.121927 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249000 5.783958 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249000 4.337969 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249100 -10.220233 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249100 5.840133 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249100 4.380100 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249200 0.113430 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249200 -10.308453 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249200 5.890545 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249200 4.417908 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249300 0.099499 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249300 -10.386501 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249300 5.935143 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249300 4.451358 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249400 -10.454298 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249400 5.973885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249400 4.480414 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249500 0.071351 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249500 -10.511779 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249500 6.006731 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249500 4.505048 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249600 0.057164 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249600 -10.558885 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249600 6.033648 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249600 4.525236 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249700 0.042922 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249700 -10.595570 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249700 6.054612 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249700 4.540959 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249800 -10.621800 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249800 6.069600 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249800 4.552200 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 206 | 212 || 0.249900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 221 || 0.249900 -10.637547 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 222 || 0.249900 6.078598 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +2 16140 || 177 | 213 | 223 || 0.249900 4.558949 0.000000 2 -20.000000 20.000000 0.250000 CMSCOPE +16140 || Ending 177 diff --git a/Working_Examples/83/CH11/EX11.5/scilab-log-28061.txt b/Working_Examples/83/CH11/EX11.5/scilab-log-28061.txt new file mode 100644 index 0000000..13c4676 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.5/scilab-log-28061.txt @@ -0,0 +1,10002 @@ +28061 || Initialization 83 +2 28061 || 83 | 112 | 118 || 0.000000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000200 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000300 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000400 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000500 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000600 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000700 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000800 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.000900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.000900 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.000900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001000 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001100 -0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.001900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.001900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.001900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002100 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002200 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002300 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002400 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002500 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002600 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002700 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002800 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.002900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.002900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.002900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.002900 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003000 0.000000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.003900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.003900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.003900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004000 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004100 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004100 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004100 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004200 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004200 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004200 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004300 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004300 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004300 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004400 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004400 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004400 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004500 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004500 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004500 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004600 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004600 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004600 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004700 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004700 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004700 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004800 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004800 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004800 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.004900 0.000000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.004900 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.004900 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005000 1.414000 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.005900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.005900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.005900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.005900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.006900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.006900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.006900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.006900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.007900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.007900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.007900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.007900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.008900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.008900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.008900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.008900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.009900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.009900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.009900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.009900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.010900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.010900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.010900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.010900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.011900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.011900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.011900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.011900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.012900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.012900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.012900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.012900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.013900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.013900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.013900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.013900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.014900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.014900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.014900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.014900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.015900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.015900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.015900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.015900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.016900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.016900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.016900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.016900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.017900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.017900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.017900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.017900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.018900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.018900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.018900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.018900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.019900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.019900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.019900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.019900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.020900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.020900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.020900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.020900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.021900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.021900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.021900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.021900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.022900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.022900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.022900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.022900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.023900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.023900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.023900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.023900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.024900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.024900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.024900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.024900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.025900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.025900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.025900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.025900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.026900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.026900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.026900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.026900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.027900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.027900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.027900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.027900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.028900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.028900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.028900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.028900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.029900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.029900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.029900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.029900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.030900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.030900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.030900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.030900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.031900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.031900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.031900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.031900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.032900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.032900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.032900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.032900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.033900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.033900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.033900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.033900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.034900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.034900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.034900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.034900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.035900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.035900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.035900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.035900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.036900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.036900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.036900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.036900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.037900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.037900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.037900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.037900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.038900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.038900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.038900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.038900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.039900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.039900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.039900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.039900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.040900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.040900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.040900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.040900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.041900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.041900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.041900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.041900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.042900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.042900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.042900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.042900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.043900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.043900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.043900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.043900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.044900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.044900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.044900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.044900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.045900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.045900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.045900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.045900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.046900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.046900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.046900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.046900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.047900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.047900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.047900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.047900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.048900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.048900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.048900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.048900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.049900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.049900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.049900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.049900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.050900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.050900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.050900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.050900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.051900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.051900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.051900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.051900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.052900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.052900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.052900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.052900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.053900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.053900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.053900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.053900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.054900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.054900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.054900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.054900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.055900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.055900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.055900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.055900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.056900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.056900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.056900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.056900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.057900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.057900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.057900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.057900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.058900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.058900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.058900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.058900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.059900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.059900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.059900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.059900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.060900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.060900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.060900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.060900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061500 9.482927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.061900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.061900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.061900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.061900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.062900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.062900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.062900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.062900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063100 -3.418411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.063900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.063900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.063900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.063900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.064900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.064900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.064900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.064900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.065900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.065900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.065900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.065900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.066900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.066900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.066900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.066900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.067900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.067900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.067900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.067900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.068900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.068900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.068900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.068900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.069900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.069900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.069900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.069900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070400 -10.558870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.070900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.070900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.070900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.070900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.071900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.071900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.071900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.071900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.072900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.072900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.072900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.072900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.073900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.073900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.073900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.073900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.074900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.074900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.074900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.074900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.075900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.075900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.075900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.075900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.076900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.076900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.076900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.076900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.077900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.077900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.077900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.077900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.078900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.078900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.078900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.078900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.079900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.079900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.079900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.079900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.080900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.080900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.080900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.080900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.081900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.081900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.081900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.081900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.082900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.082900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.082900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.082900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083700 -2.415325 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.083900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.083900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.083900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.083900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084200 -1.512454 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.084900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.084900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.084900 -0.191030 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.084900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.085900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.085900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.085900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.085900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.086900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.086900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.086900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.086900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.087900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.087900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.087900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.087900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.088900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.088900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.088900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.088900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.089900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.089900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.089900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.089900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.090900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.090900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.090900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.090900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.091900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.091900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.091900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.091900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.092900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.092900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.092900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.092900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.093900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.093900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.093900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.093900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.094900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.094900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.094900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.094900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.095900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.095900 2.969439 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.095900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.095900 -1.272617 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.096900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.096900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.096900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.096900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.097900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.097900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.097900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.097900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.098900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.098900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.098900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.098900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099400 -4.480483 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.099900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.099900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.099900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.099900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.100900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.100900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.100900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.100900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.101900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.101900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.101900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.101900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.102900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.102900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.102900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.102900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.103900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.103900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.103900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.103900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.104900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.104900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.104900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.104900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.105900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.105900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.105900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.105900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.106900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.106900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.106900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.106900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.107900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.107900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.107900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.107900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.108900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.108900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.108900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.108900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.109900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.109900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.109900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.109900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.110900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.110900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.110900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.110900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.111900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.111900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.111900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.111900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.112900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.112900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.112900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.112900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113500 -4.831635 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.113900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.113900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.113900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.113900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.114900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.114900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.114900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.114900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.115900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.115900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.115900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.115900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.116900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.116900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.116900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.116900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.117900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.117900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.117900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.117900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.118900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.118900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.118900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.118900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.119900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.119900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.119900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.119900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.120900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.120900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.120900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.120900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.121900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.121900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.121900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.121900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.122900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.122900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.122900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.122900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.123900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.123900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.123900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.123900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.124900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.124900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.124900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.124900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.125900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.125900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.125900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.125900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.126900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.126900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.126900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.126900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.127900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.127900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.127900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.127900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.128900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.128900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.128900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.128900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.129900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.129900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.129900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.129900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.130900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.130900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.130900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.130900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.131900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.131900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.131900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.131900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.132900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.132900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.132900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.132900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.133900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.133900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.133900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.133900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.134900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.134900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.134900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.134900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.135900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.135900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.135900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.135900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.136900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.136900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.136900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.136900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.137900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.137900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.137900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.137900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.138900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.138900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.138900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.138900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.139900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.139900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.139900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.139900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.140900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.140900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.140900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.140900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.141900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.141900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.141900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.141900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142200 -4.686012 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.142900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.142900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.142900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.142900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.143900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.143900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.143900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.143900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.144900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.144900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.144900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.144900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.145900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.145900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.145900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.145900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.146900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.146900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.146900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.146900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.147900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.147900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.147900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.147900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.148900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.148900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.148900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.148900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.149900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.149900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.149900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.149900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.150900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.150900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.150900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.150900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.151900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.151900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.151900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.151900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.152900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.152900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.152900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.152900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.153900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.153900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.153900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.153900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.154900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.154900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.154900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.154900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.155900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.155900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.155900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.155900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.156900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.156900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.156900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.156900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.157900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.157900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.157900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.157900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.158900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.158900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.158900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.158900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.159900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.159900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.159900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.159900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.160900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.160900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.160900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.160900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.161900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.161900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.161900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.161900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.162900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.162900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.162900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.162900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.163900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.163900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.163900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.163900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164000 -1.879343 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.164900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.164900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.164900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.164900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.165900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.165900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.165900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.165900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.166900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.166900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.166900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.166900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167500 3.225278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.167900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.167900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.167900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.167900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.168900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.168900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.168900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.168900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.169900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.169900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.169900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.169900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.170900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.170900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.170900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.170900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.171900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.171900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.171900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.171900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.172900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.172900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.172900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.172900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.173900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.173900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.173900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.173900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.174900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.174900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.174900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.174900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.175900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.175900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.175900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.175900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176000 -1.409572 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.176900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.176900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.176900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.176900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.177900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.177900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.177900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.177900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.178900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.178900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.178900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.178900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.179900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.179900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.179900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.179900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.180900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.180900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.180900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.180900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.181900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.181900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.181900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.181900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.182900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.182900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.182900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.182900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.183900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.183900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.183900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.183900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.184900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.184900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.184900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.184900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.185900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.185900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.185900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.185900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.186900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.186900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.186900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.186900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.187900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.187900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.187900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.187900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.188900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.188900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.188900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.188900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.189900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.189900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.189900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.189900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.190900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.190900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.190900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.190900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.191900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.191900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.191900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.191900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.192900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.192900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.192900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.192900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.193900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.193900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.193900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.193900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.194900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.194900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.194900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.194900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.195900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.195900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.195900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.195900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.196900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.196900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.196900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.196900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.197900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.197900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.197900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.197900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.198900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.198900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.198900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.198900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.199900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.199900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.199900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.199900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.200900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.200900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.200900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.200900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.201900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.201900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.201900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.201900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.202900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.202900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.202900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.202900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.203900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.203900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.203900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.203900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.204900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.204900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.204900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.204900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.205900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.205900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.205900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.205900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.206900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.206900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.206900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.206900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.207900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.207900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.207900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.207900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.208900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.208900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.208900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.208900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.209900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.209900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.209900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.209900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.210900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.210900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.210900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.210900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.211900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.211900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.211900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.211900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.212900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.212900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.212900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.212900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.213900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.213900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.213900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.213900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.214900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.214900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.214900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.214900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.215900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.215900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.215900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.215900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.216900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.216900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.216900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.216900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.217900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.217900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.217900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.217900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.218900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.218900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.218900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.218900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219000 10.122088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219000 -4.338038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.219900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.219900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.219900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.219900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.220900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.220900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.220900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.220900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.221900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.221900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.221900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.221900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222100 8.409566 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222100 -3.604100 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.222900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.222900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.222900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.222900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.223900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.223900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.223900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.223900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.224900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.224900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.224900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.224900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.225900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.225900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.225900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.225900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.226900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.226900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.226900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.226900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.227900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.227900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.227900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.227900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.228900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.228900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.228900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.228900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.229900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.229900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.229900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.229900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230000 -0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230000 -10.642802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230000 6.081601 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230000 4.561201 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230100 -0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230100 -10.637548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230100 6.078599 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230100 4.558949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230200 -0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230200 -10.621796 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230200 6.069598 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230200 4.552198 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230300 -0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230300 -10.595562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230300 6.054607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230300 4.540955 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230400 -0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230400 -10.558871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230400 6.033640 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230400 4.525230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230500 -0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230500 -10.511759 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230500 6.006720 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230500 4.505040 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230600 -0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230600 -10.454275 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230600 5.973871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230600 4.480403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230700 -0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230700 -10.386472 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230700 5.935127 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230700 4.451345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230800 -0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230800 -10.308420 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230800 5.890526 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230800 4.417894 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.230900 -0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.230900 -10.220194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.230900 5.840111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.230900 4.380083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231000 -0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231000 -10.121883 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231000 5.783933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231000 4.337950 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231100 -0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231100 -10.013583 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231100 5.722047 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231100 4.291535 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231200 -0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231200 -9.895400 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231200 5.654514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231200 4.240886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231300 -0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231300 -9.767451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231300 5.581401 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231300 4.186051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231400 -0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231400 -9.629863 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231400 5.502779 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231400 4.127084 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231500 -0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231500 -9.482772 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231500 5.418727 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231500 4.064045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231600 -0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231600 -9.326321 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231600 5.329326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231600 3.996995 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231700 -0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231700 -9.160667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231700 5.234667 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231700 3.926000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231800 -0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231800 -8.985971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231800 5.134841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231800 3.851131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.231900 -0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.231900 -8.802408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.231900 5.029947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.231900 3.772460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232000 -0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232000 -8.610158 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232000 4.920090 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232000 3.690068 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232100 -0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232100 -8.409411 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232100 4.805378 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232100 3.604033 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232200 -0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232200 -8.200365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232200 4.685923 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232200 3.514442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232300 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232300 -7.983227 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232300 4.561844 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232300 3.421383 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232400 -0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232400 -7.758210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232400 4.433263 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232400 3.324947 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232500 -0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232500 -7.525537 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232500 4.300307 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232500 3.225230 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232600 -0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232600 -7.285437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232600 4.163107 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232600 3.122330 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232700 -0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232700 -7.038146 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232700 4.021798 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232700 3.016348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232800 -0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232800 -6.783909 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232800 3.876519 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232800 2.907390 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.232900 -0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.232900 -6.522977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.232900 3.727415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.232900 2.795561 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233000 -0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233000 -6.255607 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233000 3.574633 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233000 2.680975 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233100 -0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233100 -5.982064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233100 3.418322 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233100 2.563742 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233200 -0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233200 -5.702616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233200 3.258638 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233200 2.443978 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233300 -0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233300 -5.417540 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233300 3.095737 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233300 2.321803 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233400 -0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233400 -5.127118 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233400 2.929782 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233400 2.197336 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233500 -0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233500 -4.831636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233500 2.760935 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233500 2.070701 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233600 -0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233600 -4.531384 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233600 2.589362 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233600 1.942022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233700 -0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233700 -4.226663 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233700 2.415236 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233700 1.811427 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233800 -0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233800 -3.917771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233800 2.238726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233800 1.679045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.233900 -0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.233900 -3.605011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.233900 2.060007 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.233900 1.545005 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234000 -0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234000 -3.288695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234000 1.879254 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234000 1.409441 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234100 -0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234100 -2.969132 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234100 1.696647 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234100 1.272485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234200 -0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234200 -2.646639 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234200 1.512365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234200 1.134274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234300 -0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234300 -2.321533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234300 1.326590 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234300 0.994943 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234400 -0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234400 -1.994136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234400 1.139506 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234400 0.854630 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234500 -0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234500 -1.664770 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234500 0.951297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234500 0.713473 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234600 -0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234600 -1.333761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234600 0.762149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234600 0.571612 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234700 -0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234700 -1.001435 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234700 0.572248 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234700 0.429186 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234800 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234800 -0.668120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234800 0.381783 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234800 0.286337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.234900 -0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.234900 -0.334147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.234900 0.190941 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.234900 0.143206 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235000 -0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235000 0.000156 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235000 -0.000089 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235000 -0.000067 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235100 -0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235100 0.334460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235100 -0.191120 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235100 -0.143340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235200 -0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235200 0.668433 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235200 -0.381962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235200 -0.286471 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235300 -0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235300 1.001746 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235300 -0.572426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235300 -0.429320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235400 -0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235400 1.334070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235400 -0.762326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235400 -0.571744 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235500 -0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235500 1.665079 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235500 -0.951474 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235500 -0.713605 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235600 -0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235600 1.994444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235600 -1.139682 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235600 -0.854762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235700 -0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235700 2.321841 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235700 -1.326766 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235700 -0.995075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235800 -0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235800 2.646946 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235800 -1.512541 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235800 -1.134405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.235900 -0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.235900 2.969438 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.235900 -1.696822 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.235900 -1.272616 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236000 -0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236000 3.289000 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236000 -1.879429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236000 -1.409571 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236100 -0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236100 3.605315 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236100 -2.060180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236100 -1.545135 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236200 -0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236200 3.918073 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236200 -2.238899 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236200 -1.679174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236300 -0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236300 4.226963 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236300 -2.415408 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236300 -1.811556 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236400 -0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236400 4.531683 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236400 -2.589533 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236400 -1.942150 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236500 -0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236500 4.831930 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236500 -2.761103 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236500 -2.070827 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236600 -0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236600 5.127410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236600 -2.929949 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236600 -2.197461 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236700 -0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236700 5.417830 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236700 -3.095903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236700 -2.321927 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236800 -0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236800 5.702903 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236800 -3.258802 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236800 -2.444101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.236900 -0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.236900 5.982348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.236900 -3.418485 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.236900 -2.563864 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237000 -0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237000 6.255889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237000 -3.574794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237000 -2.681095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237100 -0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237100 6.523256 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237100 -3.727575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237100 -2.795681 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237200 -0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237200 6.784185 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237200 -3.876677 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237200 -2.907508 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237300 -0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237300 7.038419 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237300 -4.021954 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237300 -3.016465 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237400 -0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237400 7.285707 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237400 -4.163261 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237400 -3.122446 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237500 -0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237500 7.525805 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237500 -4.300460 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237500 -3.225345 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237600 -0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237600 7.758475 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237600 -4.433414 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237600 -3.325061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237700 -0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237700 7.983487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237700 -4.561993 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237700 -3.421495 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237800 -0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237800 8.200622 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237800 -4.686070 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237800 -3.514552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.237900 -0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.237900 8.409664 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.237900 -4.805522 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.237900 -3.604142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238000 -0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238000 8.610406 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238000 -4.920232 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238000 -3.690174 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238100 -0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238100 8.802651 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238100 -5.030087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238100 -3.772565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238200 -0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238200 8.986210 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238200 -5.134977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238200 -3.851233 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238300 -0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238300 9.160902 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238300 -5.234801 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238300 -3.926101 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238400 -0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238400 9.326552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238400 -5.329458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238400 -3.997094 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238500 -0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238500 9.482998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238500 -5.418856 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238500 -4.064142 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238600 -0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238600 9.630086 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238600 -5.502906 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238600 -4.127180 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238700 -0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238700 9.767669 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238700 -5.581525 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238700 -4.186144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238800 -0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238800 9.895613 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238800 -5.654636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238800 -4.240977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.238900 -0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.238900 10.013792 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.238900 -5.722167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.238900 -4.291625 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239000 -0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239000 10.122087 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239000 -5.784050 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239000 -4.338037 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239100 -0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239100 10.220394 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239100 -5.840225 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239100 -4.380169 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239200 -0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239200 10.308614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239200 -5.890636 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239200 -4.417977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239300 -0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239300 10.386662 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239300 -5.935235 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239300 -4.451426 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239400 -0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239400 10.454459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239400 -5.973977 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239400 -4.480482 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239500 -0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239500 10.511939 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239500 -6.006823 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239500 -4.505117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239600 -0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239600 10.559045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239600 -6.033740 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239600 -4.525305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239700 -0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239700 10.595731 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239700 -6.054704 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239700 -4.541028 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239800 -0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239800 10.621961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239800 -6.069692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239800 -4.552269 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.239900 -0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.239900 10.637708 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.239900 -6.078690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.239900 -4.559018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240000 0.000003 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240000 10.642957 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240000 -6.081690 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240000 -4.561267 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240100 0.014331 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240100 10.637703 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240100 -6.078687 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240100 -4.559015 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240200 0.028644 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240200 10.621951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240200 -6.069686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240200 -4.552265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240300 0.042929 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240300 10.595716 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240300 -6.054695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240300 -4.541021 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240400 0.057171 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240400 10.559025 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240400 -6.033729 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240400 -4.525297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240500 0.071358 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240500 10.511914 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240500 -6.006808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240500 -4.505106 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240600 0.085474 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240600 10.454429 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240600 -5.973960 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240600 -4.480470 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240700 0.099504 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240700 10.386627 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240700 -5.935215 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240700 -4.451412 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240800 0.113438 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240800 10.308575 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240800 -5.890614 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240800 -4.417961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.240900 0.127258 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.240900 10.220348 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.240900 -5.840199 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.240900 -4.380149 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241000 0.140960 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241000 10.122038 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241000 -5.784022 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241000 -4.338016 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241100 0.154511 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241100 10.013738 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241100 -5.722136 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241100 -4.291602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241200 0.167914 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241200 9.895555 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241200 -5.654603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241200 -4.240952 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241300 0.181150 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241300 9.767606 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241300 -5.581489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241300 -4.186117 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241400 0.194212 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241400 9.630018 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241400 -5.502867 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241400 -4.127151 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241500 0.207080 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241500 9.482926 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241500 -5.418815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241500 -4.064111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241600 0.219742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241600 9.326476 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241600 -5.329415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241600 -3.997061 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241700 0.232189 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241700 9.160821 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241700 -5.234755 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241700 -3.926066 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241800 0.244408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241800 8.986126 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241800 -5.134929 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241800 -3.851197 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.241900 0.256384 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.241900 8.802562 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.241900 -5.030036 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.241900 -3.772527 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242000 0.268110 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242000 8.610312 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242000 -4.920178 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242000 -3.690134 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242100 0.279574 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242100 8.409565 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242100 -4.805466 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242100 -3.604099 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242200 0.290760 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242200 8.200520 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242200 -4.686011 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242200 -3.514509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242300 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242300 7.983382 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242300 -4.561932 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242300 -3.421449 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242400 0.312242 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242400 7.758365 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242400 -4.433351 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242400 -3.325014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242500 0.322534 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242500 7.525692 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242500 -4.300395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242500 -3.225297 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242600 0.332503 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242600 7.285592 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242600 -4.163195 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242600 -3.122396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242700 0.342146 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242700 7.038301 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242700 -4.021886 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242700 -3.016415 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242800 0.351452 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242800 6.784064 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242800 -3.876608 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242800 -2.907456 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.242900 0.360411 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.242900 6.523131 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.242900 -3.727504 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.242900 -2.795628 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243000 0.369018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243000 6.255762 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243000 -3.574721 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243000 -2.681041 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243100 0.377255 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243100 5.982218 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243100 -3.418410 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243100 -2.563808 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243200 0.385122 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243200 5.702771 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243200 -3.258726 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243200 -2.444045 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243300 0.392609 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243300 5.417695 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243300 -3.095826 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243300 -2.321869 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243400 0.399715 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243400 5.127273 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243400 -2.929870 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243400 -2.197403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243500 0.406418 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243500 4.831790 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243500 -2.761023 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243500 -2.070767 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243600 0.412720 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243600 4.531539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243600 -2.589451 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243600 -1.942088 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243700 0.418612 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243700 4.226818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243700 -2.415324 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243700 -1.811493 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243800 0.424096 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243800 3.917925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243800 -2.238814 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243800 -1.679111 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.243900 0.429162 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.243900 3.605166 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.243900 -2.060095 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.243900 -1.545071 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244000 0.433801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244000 3.288849 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244000 -1.879342 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244000 -1.409507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244100 0.438018 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244100 2.969287 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244100 -1.696735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244100 -1.272552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244200 0.441797 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244200 2.646794 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244200 -1.512453 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244200 -1.134340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244300 0.445142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244300 2.321688 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244300 -1.326679 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244300 -0.995009 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244400 0.448054 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244400 1.994291 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244400 -1.139595 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244400 -0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244500 0.450515 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244500 1.664925 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244500 -0.951386 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244500 -0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244600 0.452532 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244600 1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244600 -0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244600 -0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244700 0.454104 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244700 1.001589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244700 -0.572337 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244700 -0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244800 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244800 0.668274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244800 -0.381871 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244800 -0.286403 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.244900 0.455901 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.244900 0.334302 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.244900 -0.191029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.244900 -0.143272 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245000 0.456129 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245000 -0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245000 0.000001 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245100 0.455903 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245100 -0.334305 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245100 0.191032 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245100 0.143274 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245200 0.455229 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245200 -0.668278 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245200 0.381873 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245200 0.286405 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245300 0.454102 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245300 -1.001591 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245300 0.572338 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245300 0.429253 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245400 0.452531 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245400 -1.333915 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245400 0.762237 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245400 0.571678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245500 0.450512 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245500 -1.664924 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245500 0.951385 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245500 0.713539 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245600 0.448049 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245600 -1.994290 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245600 1.139594 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245600 0.854696 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245700 0.445144 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245700 -2.321686 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245700 1.326678 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245700 0.995008 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245800 0.441801 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245800 -2.646791 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245800 1.512452 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245800 1.134339 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.245900 0.438014 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.245900 -2.969284 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.245900 1.696734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.245900 1.272550 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246000 0.433800 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246000 -3.288845 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246000 1.879340 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246000 1.409505 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246100 0.429161 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246100 -3.605161 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246100 2.060092 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246100 1.545069 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246200 0.424092 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246200 -3.917918 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246200 2.238810 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246200 1.679108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246300 0.418611 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246300 -4.226809 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246300 2.415319 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246300 1.811489 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246400 0.412713 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246400 -4.531528 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246400 2.589444 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246400 1.942083 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246500 0.406409 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246500 -4.831775 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246500 2.761014 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246500 2.070761 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246600 0.399708 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246600 -5.127255 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246600 2.929860 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246600 2.197395 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246700 0.392610 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246700 -5.417675 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246700 3.095815 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246700 2.321861 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246800 0.385125 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246800 -5.702749 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246800 3.258713 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246800 2.444035 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.246900 0.377251 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.246900 -5.982194 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.246900 3.418396 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.246900 2.563797 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247000 0.369011 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247000 -6.255735 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247000 3.574706 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247000 2.681029 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247100 0.360408 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247100 -6.523102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247100 3.727487 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247100 2.795615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247200 0.351451 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247200 -6.784031 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247200 3.876589 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247200 2.907442 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247300 0.342142 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247300 -7.038265 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247300 4.021865 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247300 3.016399 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247400 0.332498 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247400 -7.285552 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247400 4.163173 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247400 3.122380 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247500 0.322526 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247500 -7.525650 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247500 4.300371 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247500 3.225279 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247600 0.312237 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247600 -7.758320 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247600 4.433326 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247600 3.324994 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247700 0.301641 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247700 -7.983333 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247700 4.561904 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247700 3.421428 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247800 0.290742 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247800 -8.200467 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247800 4.685981 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247800 3.514486 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.247900 0.279557 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.247900 -8.409509 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.247900 4.805434 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.247900 3.604075 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248000 0.268113 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248000 -8.610251 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248000 4.920144 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248000 3.690108 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248100 0.256386 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248100 -8.802497 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248100 5.029998 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248100 3.772499 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248200 0.244405 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248200 -8.986056 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248200 5.134889 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248200 3.851167 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248300 0.232185 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248300 -9.160747 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248300 5.234712 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248300 3.926034 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248400 0.219738 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248400 -9.326397 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248400 5.329370 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248400 3.997027 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248500 0.207073 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248500 -9.482843 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248500 5.418768 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248500 4.064076 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248600 0.194205 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248600 -9.629931 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248600 5.502818 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248600 4.127113 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248700 0.181147 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248700 -9.767514 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248700 5.581437 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248700 4.186078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248800 0.167908 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248800 -9.895458 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248800 5.654548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248800 4.240911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.248900 0.154502 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.248900 -10.013637 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.248900 5.722078 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.248900 4.291559 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249000 0.140947 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249000 -10.121933 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249000 5.783962 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249000 4.337971 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249100 0.127252 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249100 -10.220239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249100 5.840137 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249100 4.380102 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249200 0.113436 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249200 -10.308459 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249200 5.890548 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249200 4.417911 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249300 0.099497 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249300 -10.386507 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249300 5.935147 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249300 4.451360 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249400 0.085467 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249400 -10.454304 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249400 5.973888 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249400 4.480416 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249500 0.071350 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249500 -10.511785 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249500 6.006734 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249500 4.505051 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249600 0.057165 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249600 -10.558891 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249600 6.033652 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249600 4.525239 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249700 0.042923 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249700 -10.595577 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249700 6.054615 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249700 4.540961 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249800 0.028637 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249800 -10.621806 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249800 6.069603 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249800 4.552203 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 112 | 118 || 0.249900 0.014324 0.000000 2 -2.000000 2.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 127 || 0.249900 -10.637553 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 128 || 0.249900 6.078602 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +2 28061 || 83 | 119 | 129 || 0.249900 4.558951 0.000000 2 -20.000000 20.000000 0.250000 Positive Seq Voltage & Sequence Currents +28061 || Ending 83 diff --git a/Working_Examples/83/CH11/EX11.5/xcos_result_example_11_5.jpg b/Working_Examples/83/CH11/EX11.5/xcos_result_example_11_5.jpg Binary files differnew file mode 100755 index 0000000..720f2f3 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.5/xcos_result_example_11_5.jpg diff --git a/Working_Examples/83/CH11/EX11.6/example_11_6.sce b/Working_Examples/83/CH11/EX11.6/example_11_6.sce new file mode 100755 index 0000000..125aac5 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.6/example_11_6.sce @@ -0,0 +1,99 @@ +//Chapter 11 +//Example 11.6 +//page 420 +//To find bus voltages and currents + +clc;clear; +v_pf=1; //prefault voltage +//according to the fig.11.26 +Y1dd=((%i*0.2)^-1)+((%i*0.0805)^-1); +Y1fg=-(%i*0.0805)^-1; +Y1de=Y1fg; +Y1ff=((%i*0.0805)^-1)+((%i*0.164)^-1); +Y1ee=Y1ff; +Y1ef=-(%i*0.164)^-1; +Y1gg=((%i*0.0805)^-1)+((%i*0.345)^-1)+((%i*0.69)^-1); +Y1df=0; +Y1dg=0; +Y1ed=Y1de; +Y1eg=0; +Y1fd=0; +Y1fe=Y1ef; +Y1gd=0; +Y1ge=0; +Y1gf=Y1fg; +printf('\nY-Bus and Z-Bus matrix can be written as:\n') +Y1_bus=[Y1dd Y1de Y1df Y1dg;Y1ed Y1ee Y1ef Y1eg;Y1fd Y1fe Y1ff Y1fg;Y1gd Y1ge Y1gf Y1gg]; +Y2_bus=Y1_bus; +printf('\nY1_bus=');disp(Y1_bus); +printf('\nY2_bus=');disp(Y2_bus); +Y0dd=(%i*1.608)^-1;Y0de=0;Y0df=0;Y0dg=0; +Y0ed=0;Y0ee=((%i*0.0805)^-1)+((%i*0.494)^-1);Y0ef=-(%i*0.494)^-1;Y0eg=0; +Y0fd=0;Y0fe=Y0ef;Y0ff=Y0ee;Y0fg=0; +Y0gd=0;Y0de=0;Y0gf=0;Y0gg=(%i*1.712)^-1; + +Y0_bus=[Y0dd Y0de Y0df Y0dg;Y0ed Y0ee Y0ef Y0eg;Y0fd Y0fe Y0ff Y0fg;Y0gd Y0de Y0gf Y0gg]; +printf('\nY0_bus=');disp(Y0_bus); + +//finding Z-bus matrix +Z1_bus=inv(Y1_bus); +Z2_bus=inv(Y2_bus); +Z0_bus=inv(Y0_bus); +printf('\n\nZ1bus=');disp(Z1_bus); +printf('\nZ2_bus=');disp(Z2_bus); +printf('\nZ0_bus=');disp(Z0_bus); + +//to find fault current with LG fault on bus e ---case(i) +If_e=(3*v_pf)/(Z1_bus(2,2)+Z2_bus(2,2)+Z0_bus(2,2)); +printf('\n\n\nFault current with LG fault on bus e is If_e= -j%0.5f\n',abs(imag(If_e))); + +//to find fault current with LG fault on bus f ---case(ii) +If_f=(3*v_pf)/(Z1_bus(3,3)+Z2_bus(3,3)+Z0_bus(3,3)); +printf('Fault current with LG fault on bus f is If_f= -j%0.5f\n',abs(imag(If_f))); + +//to find bus voltages and line currents in case(i) +printf('\n\n\nBus voltages and currents are given below:\n\n'); +Vf1_d=1-(Z1_bus(1,2)*If_e/3); +Vf1_e=1-(Z1_bus(2,2)*If_e/3); +Vf1_f=1-(Z1_bus(3,2)*If_e/3); +Vf1_g=1-(Z1_bus(4,2)*If_e/3); +disp('Vf1_d=');disp(Vf1_d); +disp('Vf1_e=');disp(Vf1_e); +disp('Vf1_f=');disp(Vf1_f); +disp('Vf1_g=');disp(Vf1_g); + +printf('\n\n\n'); +Vf2_d=-(Z2_bus(1,2)*If_e/3); +Vf2_e=-(Z2_bus(2,2)*If_e/3); +Vf2_f=-(Z2_bus(3,2)*If_e/3); +Vf2_g=-(Z2_bus(4,2)*If_e/3); +disp('Vf2_d=');disp(Vf2_d); +disp('Vf2_e=');disp(Vf2_e); +disp('Vf2_f=');disp(Vf2_f); +disp('Vf2_g=');disp(Vf2_g); + +printf('\n\n\n'); +Vf0_d=-(Z0_bus(1,2)*If_e/3); +Vf0_e=-(Z0_bus(2,2)*If_e/3); +Vf0_f=-(Z0_bus(3,2)*If_e/3); +Vf0_g=-(Z0_bus(4,2)*If_e/3); +disp('Vf0_d=');disp(Vf0_d); +disp('Vf0_e=');disp(Vf0_e); +disp('Vf0_f=');disp(Vf0_f); +disp('Vf0_g=');disp(Vf0_g); + +printf('\n\n\n'); +If1_fe=-Y1fe*(Vf1_f-Vf1_e);disp('If1_fe=');disp(If1_fe); +If1_de=-Y1de*(Vf1_d-Vf1_e);disp('If1_de=');disp(If1_de); +Ia1=If1_fe+If1_de;disp('Ia1=');disp(Ia1); + +printf('\n\n\n'); +If1_gf=-Y1gf*(Vf2_g-Vf2_f);disp('If1_gf=');disp(If1_gf); + +printf('\n\n\n'); +If2_fe=-Y1fe*(Vf2_f-Vf2_e);disp('If2_fe=');disp(If2_fe); //Y2fe=Y1fe +If0_fe=-Y0fe*(Vf2_f-Vf2_e);disp('If0_fe=');disp(If0_fe); +If_fe=If1_fe+If2_fe+If0_fe;disp('If_fe=');disp(If_fe); + + + diff --git a/Working_Examples/83/CH11/EX11.6/result_example_11_6.txt b/Working_Examples/83/CH11/EX11.6/result_example_11_6.txt new file mode 100755 index 0000000..3ec225f --- /dev/null +++ b/Working_Examples/83/CH11/EX11.6/result_example_11_6.txt @@ -0,0 +1,141 @@ + +Y-Bus and Z-Bus matrix can be written as: + +Y1_bus= + - 17.42236i 12.42236i 0 0 + 12.42236i - 18.519921i 6.097561i 0 + 0 6.097561i - 18.519921i 12.42236i + 0 0 12.42236i - 16.770186i + +Y2_bus= + - 17.42236i 12.42236i 0 0 + 12.42236i - 18.519921i 6.097561i 0 + 0 6.097561i - 18.519921i 12.42236i + 0 0 12.42236i - 16.770186i + +Y0_bus= + - 0.6218905i 0 0 0 + 0 - 14.446652i 2.0242915i 0 + 0 2.0242915i - 14.446652i 0 + 0 0 0 - 0.5841121i + + +Z1bus= + 0.1470199i 0.1256954i 0.0822517i 0.0609272i + 0.1256954i 0.1762877i 0.1153579i 0.0854503i + 0.0822517i 0.1153579i 0.1828043i 0.1354106i + 0.0609272i 0.0854503i 0.1354106i 0.1599338i + +Z2_bus= + 0.1470199i 0.1256954i 0.0822517i 0.0609272i + 0.1256954i 0.1762877i 0.1153579i 0.0854503i + 0.0822517i 0.1153579i 0.1828043i 0.1354106i + 0.0609272i 0.0854503i 0.1354106i 0.1599338i + +Z0_bus= + 1.608i 0 0 0 + 0 0.0706065i 0.0098935i 0 + 0 0.0098935i 0.0706065i 0 + 0 0 0 1.712i + + + +Fault current with LG fault on bus e is If_e= -j7.08915 +Fault current with LG fault on bus f is If_f= -j6.87734 + + + +Bus voltages and currents are given below: + + + Vf1_d= + + 0.7029756 + + Vf1_e= + + 0.5834233 + + Vf1_f= + + 0.7274035 + + Vf1_g= + + 0.7980766 + + + + + Vf2_d= + + - 0.2970244 + + Vf2_e= + + - 0.4165767 + + Vf2_f= + + - 0.2725965 + + Vf2_g= + + - 0.2019234 + + + + + Vf0_d= + + 0 + + Vf0_e= + + - 0.1668466 + + Vf0_f= + + - 0.0233789 + + Vf0_g= + + 0 + + + + + If1_fe= + + - 0.8779277i + + If1_de= + + - 1.4851219i + + Ia1= + + - 2.3630496i + + + + + If1_gf= + + - 0.8779277i + + + + + If2_fe= + + - 0.8779277i + + If0_fe= + + - 0.2914578i + + If_fe= + + - 2.0473131i + diff --git a/Working_Examples/83/CH11/EX11.7/example_11_7.sce b/Working_Examples/83/CH11/EX11.7/example_11_7.sce new file mode 100755 index 0000000..3c98e56 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.7/example_11_7.sce @@ -0,0 +1,81 @@ +//Chapter 11 +//Example 11.7 +//page 423 +//To find short circuit currents + +clc;clear; +v_pf=1; //prefault voltage +a=0.5+0.8660254*%i; +//according to the fig.11.28 we can write Z-bus matrix for positive and negative phase sequence +printf('\nstep by step for finding Z1_bus\n') + +//Bus1 to referance bus +Z1_bus=[0.15]; +printf('Bus1 to reference\nZ1_bus=');disp(Z1_bus); + +//Bus2 to Bus1 +Z1_bus=[Z1_bus 0.15;0.15 0.15+0.2]; +printf('\nBus2 to Bus1\nZ1_bus=');disp(Z1_bus); + +//Bus2 to reference bus +Z1_bus=Z1_bus-(1/(Z1_bus(2,2)+0.15))*[Z1_bus(1:2,2:2)]*[Z1_bus(2:2,1:2)]; +Z1_bus=(%i*Z1_bus); +Z2_bus=Z1_bus; +printf('\nBus2 to Reference\nZ1_bus=');disp(Z1_bus);printf('\nZ2_bus=');disp(Z2_bus); + +//according to the fig.11.29 we can write Z-bus matrix for zero phase sequence +printf('\nstep by step for finding Z0_bus\n') +//Bus1 to referance bus +Z0_bus=[0.05]; +printf('\nBus1 to reference \nZ0_bus=');disp(Z0_bus); + +//Bus2 to Bus1 +Z0_bus=[Z0_bus 0.05;0.05 0.05+0.4]; +printf('\nBus1 to Bus1 \nZ0_bus=');disp(Z0_bus); + +//Bus2 to reference bus +Z0_bus=Z0_bus-(1/(Z0_bus(2,2)+0.05))*[Z0_bus(1:2,2:2)]*[Z0_bus(2:2,1:2)]; +Z0_bus=(%i*Z0_bus); +printf('\nBus2 to reference \nZ0_bus=');disp(Z0_bus); + +//to find positive sequence of fault current +printf('\n\n\nFault current calculation\n') +If1_1=v_pf/(Z1_bus(1,1)+Z2_bus(1,1)+Z0_bus(1,1)); printf('If1_1 = -j%0.5f',abs(imag(If1_1))); +printf('\nFault current=If1=3If1_1=-j%0.1f\n\n',abs(imag(3*If1_1))); + +Vf1_1=1-Z1_bus(1,1)*If1_1; +Vf1_2=1-Z1_bus(2,1)*If1_1; + +Vf2_1=-Z2_bus(1,1)*If1_1; +Vf2_2=-Z2_bus(2,1)*If1_1; + +Vf0_1=-Z0_bus(1,1)*If1_1; +Vf0_2=-Z0_bus(2,1)*If1_1; + +If1_12=((%i*0.2)^-1)*(Vf1_1-Vf1_2); +If2_12=((%i*0.2)^-1)*(Vf2_1-Vf2_2); +If0_12=((%i*0.4)^-1)*(Vf0_1-Vf0_2); + +If=[1 1 1;a^2 a 1;a a^2 1]*[If1_12;If2_12;If0_12]; + +printf('\n\n\nShort circuit current on the transmission line in all the three phases\n') +printf('\nIf_a_12='); +disp(If(1,1)); + +printf('\nIf_b_12='); +disp(If(2,1)); + +printf('\nIf_b_12='); +disp(If(3,1)); + +//short circuit current phase(a) of the generator +If1_G=((0.15*%i)^-1)*(1-Vf1_1)*(cosd(-30)+%i*sind(-30)); +If2_G=((0.15*%i)^-1)*(0-Vf2_1)*(cosd(30)+%i*sind(30)); +If0_G=0; +printf('\n\n\nshort circuit current phase(a) of the generator\n') +Ifa_G=If1_G+If2_G+If0_G; printf('Ifa_G = -j%0.5f',abs(imag(Ifa_G))); + +//Voltage of the healthy phases of the bus 1. +printf('\n\n\nVoltage of the healthy phases of the bus 1\n') +Vf_b_1=Vf1_1*(cosd(240)+%i*sind(240))+Vf2_1*(cosd(120)+%i*sind(120))+Vf0_1; printf('Vf_b_1=%0.4f - j%0.5f',real(Vf_b_1),abs(imag(Vf_b_1))); +Vf_c_1=Vf1_1*(cosd(120)+%i*sind(120))+Vf2_1*(cosd(240)+%i*sind(240))+Vf0_1; printf('\nVf_c_1=%0.4f + j%0.5f',real(Vf_c_1),abs(imag(Vf_c_1))); diff --git a/Working_Examples/83/CH11/EX11.7/result_example_11_7.txt b/Working_Examples/83/CH11/EX11.7/result_example_11_7.txt new file mode 100755 index 0000000..1e6a021 --- /dev/null +++ b/Working_Examples/83/CH11/EX11.7/result_example_11_7.txt @@ -0,0 +1,65 @@ + +step by step for finding Z1_bus +Bus1 to reference +Z1_bus= + 0.15 + +Bus2 to Bus1 +Z1_bus= + 0.15 0.15 + 0.15 0.35 + +Bus2 to Reference +Z1_bus= + 0.105i 0.045i + 0.045i 0.105i + +Z2_bus= + 0.105i 0.045i + 0.045i 0.105i + +step by step for finding Z0_bus + +Bus1 to reference +Z0_bus= + 0.05 + +Bus1 to Bus1 +Z0_bus= + 0.05 0.05 + 0.05 0.45 + +Bus2 to reference +Z0_bus= + 0.045i 0.005i + 0.005i 0.045i + + + +Fault current calculation +If1_1 = -j3.92157 +Fault current=If1=3If1_1=-j11.8 + + + + +Short circuit current on the transmission line in all the three phases + +If_a_12= + 2.745098i + +If_b_12= + - 2.0377068 + 0.3921569i + +If_b_12= + - 2.0377068 + 0.3921569i + + + +short circuit current phase(a) of the generator +Ifa_G = -j4.75465 + + +Voltage of the healthy phases of the bus 1 +Vf_b_1=-0.2647 - j0.86603 +Vf_c_1=-0.2647 + j0.86603 diff --git a/Working_Examples/83/CH12/EX12.1/example_12_1.sce b/Working_Examples/83/CH12/EX12.1/example_12_1.sce new file mode 100755 index 0000000..dcc72ab --- /dev/null +++ b/Working_Examples/83/CH12/EX12.1/example_12_1.sce @@ -0,0 +1,26 @@ +//Chapter 12 +//Example 12.1 +//page 439 +//To find stored kinetic energy,rotor acceleration,change in torque angle and rotor speed +clear;clc; +G=100; //base machine rating +H=8.0; //inertia constant +P=4; //no of poles +//(a)To find stored energy in rotor at synchronous speed +stored_energy=G*H; +printf('\nStored energy = %d MJ',stored_energy); + +//(b)To find rotor acceleration when mechanical input is raised 80MW for an electrical load of 50MW +Pa=30; //nett power +f=50; //frequency +M=stored_energy/(180*f); +alpha=Pa/M; //rotor acceleration +printf('\n\nRotor acceleration = %0.1f elect deg/s^2 ',alpha); + +//(c)To calculate change in torque angle and rotor speed when the above acceleration is maintained for 10 cycles +change_angle=0.5*alpha*(10*20*10^(-3)); +printf('\n\nChange in torque angle = %0.2f elect degrees',change_angle); +change_angle=60*alpha/(2*360); +printf('\nChange in torque angle = %0.3f rpm/s',change_angle); +speed=(120*f/P)+(change_angle*0.2); +printf('\n\nRoor speed at the end of 10 cycles = %0.3f rpm',speed); diff --git a/Working_Examples/83/CH12/EX12.1/result_example_12_1.txt b/Working_Examples/83/CH12/EX12.1/result_example_12_1.txt new file mode 100755 index 0000000..b8ab028 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.1/result_example_12_1.txt @@ -0,0 +1,9 @@ + +Stored energy = 800 MJ + +Rotor acceleration = 337.5 elect deg/s^2 + +Change in torque angle = 33.75 elect degrees +Change in torque angle = 28.125 rpm/s + +Roor speed at the end of 10 cycles = 1505.625 rpm diff --git a/Working_Examples/83/CH12/EX12.10/example_12_10.sce b/Working_Examples/83/CH12/EX12.10/example_12_10.sce new file mode 100755 index 0000000..79310e8 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.10/example_12_10.sce @@ -0,0 +1,170 @@ +//Chapter 12 +//Example 12.10 +//page 482 +//To plot swing curves for sustained fault and fault cleared at 2.5 and 6.25 cycles +clear;clc; +P_delivered=18; +MVA_base=20; +Xd=0.35;E=1.1; +Xl=0.2; +V=1; + +H=2.52; +f=50; +M=H/(180*f); + +/////////Prefault////////////////////////// +X1=Xd+Xl/2; +delta=0:0.1:180; +Pe1=E*V*sind(delta)/X1; +P_initial=P_delivered/MVA_base;Pm=P_initial; +delta0=asind(P_initial/max(Pe1)); + + +//////during fault//////// +X2=1.25; //from delta to star conversion +Pe2=E*V*sind(delta)/X2; + +//////postfault:with faulted line switched off///////// +X3=Xd+Xl; +Pe3=E*V*sind(delta)/X3; + +Pa_0minus=0; +Pa_0plus=Pm-max(Pe2)*sind(delta0); +Pa_avg=(Pa_0minus+Pa_0plus)/2; + + +/////for a sustained fault/////////// +P_max=max(Pe2); +delta_delta=0; //initially +delta=21.64; //initially +delta_old=21.64; +delta_t=0.05; +z1=21.64 +n=10; +T=0; +printf('Point-by-point calculation of swing curve for sustained fault delta_t=0.05sec\n'); +printf('_______________________________________________________________________________________________\n'); +printf('t\t\tPmax\t\t sin(delta)\t\tPa\t\t y\t\tdelta\n'); +printf('_______________________________________________________________________________________________\n'); +printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',0.000,P_max,sind(delta),(0.9-P_max*sind(delta))/2,8.929*(0.9-P_max*sind(delta))/2,delta); +for i=1:n + t=i*delta_t; + if i==1 then + Pa=(0.9-P_max*sind(delta_old))/2; + else + Pa=0.9-P_max*sind(delta_old); + end + + y=(delta_t^2)*Pa/M; + delta_delta=delta_delta+y; + delta=delta+delta_delta; + z1=[z1,delta];T=[T,t]; + printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),0.9-P_max*sind(delta),8.929*(0.9-P_max*sind(delta)),delta); + delta_old=delta; +end + + +//////Fault cleared in 2.5 cycles(time to clear fault=0.05sec)///// + +P_max1=max(Pe2); +P_max2=max(Pe3); +delta_delta=0; //initially +delta=21.64; //initially +delta_old=21.64; +delta_t=0.05; +z2=21.64 +n=10; +T=0; +printf('\n\nComputations of swing curves for fault cleared at 2.5 cycles(0.05sec)\n'); +printf('______________________________________________________________________________________________\n'); +printf('t\t\tPmax\t\t sin(delta)\t\tPa\t\t y\t\tdelta\n'); +printf('______________________________________________________________________________________________\n'); +printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',0.000,P_max,sind(delta),(0.9-P_max*sind(delta))/2,8.929*(0.9-P_max*sind(delta))/2,delta); +for i=1:n + t=i*delta_t; + if i==1 then + Pa=(0.9-P_max*sind(delta_old))/2; + P_max=P_max1; + elseif i==2 then + Pa=((0.9-P_max2*sind(delta_old))+((0.9-P_max1*sind(delta_old))))/2; + P_max=P_max2; + else + Pa=0.9-P_max2*sind(delta_old); + P_max=P_max2; + end + + y=(delta_t^2)*Pa/M; + delta_delta=delta_delta+y; + delta=delta+delta_delta; + z2=[z2,delta];T=[T,t]; + + if i==1 then + delta_old=delta; + printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),((0.9-P_max2*sind(delta_old))+((0.9-P_max1*sind(delta_old))))/2,8.929*((0.9-P_max2*sind(delta_old))+((0.9-P_max1*sind(delta_old))))/2,delta); + else + printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),0.9-P_max*sind(delta),8.929*(0.9-P_max*sind(delta)),delta); + delta_old=delta; + end + +end + + + +//////Fault cleared in 6.25 cycles(time to clear fault=0.125sec)///// + +P_max1=max(Pe2); +P_max2=max(Pe3); +P_max=P_max1; +delta_delta=0; //initially +delta=21.64; //initially +delta_old=21.64; +delta_t=0.05; +z3=21.64 +n=10; +T=0; +printf('\n\nComputations of swing curves for fault cleared at 6.25 cycles(0.125sec)\n'); +printf('______________________________________________________________________________________________\n'); +printf('t\t\tPmax\t\t sin(delta)\t\tPa\t\t y\t\tdelta\n'); +printf('______________________________________________________________________________________________\n'); +printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',0.000,P_max,sind(delta),(0.9-P_max*sind(delta))/2,8.929*(0.9-P_max*sind(delta))/2,delta); +for i=1:n + t=i*delta_t; + if i==1 then + Pa=(0.9-P_max1*sind(delta_old))/2; + P_max=P_max1; + elseif i==2 then + Pa=(0.9-P_max1*sind(delta_old)); + P_max=P_max1; + elseif i==3 then + Pa=(0.9-P_max1*sind(delta_old)); + P_max=P_max2; + else + Pa=0.9-P_max2*sind(delta_old); + P_max=P_max2; + end + + y=(delta_t^2)*Pa/M; + delta_delta=delta_delta+y; + delta=delta+delta_delta; + z3=[z3,delta]; + T=[T,t]; + printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),0.9-P_max*sind(delta),8.929*(0.9-P_max*sind(delta)),delta); + delta_old=delta; + +end + +plot(T,z1,T,z2,T,z3); +set(gca(),"grid",[1 1]); +legend('Sustained Fault','Fault cleared at 2.5 cycles','Fault cleared at 6.25 cycles',[,2]); + +title('Swing Curves for Example 12.10 for a sustained fault and for clearing in 2.5 and 6.25 cycles','fontsize',2.4); +xlabel('Time (in seconds)----->'); +ylabel('Torque Angle (delta,deg)----->'); +f=get("current_figure") +f.figure_position=[0,15] +f.figure_size=[645,1000] + + + + diff --git a/Working_Examples/83/CH12/EX12.10/result_example_12_10.txt b/Working_Examples/83/CH12/EX12.10/result_example_12_10.txt new file mode 100755 index 0000000..51afab7 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.10/result_example_12_10.txt @@ -0,0 +1,53 @@ + + +Point-by-point calculation of swing curve for sustained fault delta_t=0.05sec +_______________________________________________________________________________________________ +t Pmax sin(delta) Pa y delta +_______________________________________________________________________________________________ +0.000 sec 0.880 0.369 0.288 2.569 21.640 +0.050 sec 0.880 0.410 0.539 4.814 24.209 +0.100 sec 0.880 0.524 0.439 3.920 31.592 +0.150 sec 0.880 0.681 0.301 2.688 42.894 +0.200 sec 0.880 0.838 0.163 1.455 56.885 +0.250 sec 0.880 0.953 0.062 0.549 72.330 +0.300 sec 0.880 1.000 0.020 0.182 88.324 +0.350 sec 0.880 0.968 0.048 0.429 104.500 +0.400 sec 0.880 0.856 0.147 1.308 121.105 +0.450 sec 0.880 0.656 0.323 2.883 139.019 +0.500 sec 0.880 0.345 0.596 5.325 159.815 + + +Computations of swing curves for fault cleared at 2.5 cycles(0.05sec) +______________________________________________________________________________________________ +t Pmax sin(delta) Pa y delta +______________________________________________________________________________________________ +0.000 sec 0.880 0.369 0.288 2.569 21.640 +0.050 sec 0.880 0.410 0.310 2.764 24.209 +0.100 sec 2.000 0.493 -0.086 -0.769 29.542 +0.150 sec 2.000 0.561 -0.221 -1.977 34.105 +0.200 sec 2.000 0.598 -0.295 -2.634 36.692 +0.250 sec 2.000 0.597 -0.294 -2.622 36.644 +0.300 sec 2.000 0.559 -0.218 -1.943 33.975 +0.350 sec 2.000 0.490 -0.081 -0.720 29.361 +0.400 sec 2.000 0.407 0.086 0.765 24.028 +0.450 sec 2.000 0.333 0.234 2.087 19.460 +0.500 sec 2.000 0.292 0.316 2.822 16.978 + + +Computations of swing curves for fault cleared at 6.25 cycles(0.125sec) +______________________________________________________________________________________________ +t Pmax sin(delta) Pa y delta +______________________________________________________________________________________________ +0.000 sec 0.880 0.369 0.288 2.569 21.640 +0.050 sec 0.880 0.410 0.539 4.814 24.209 +0.100 sec 0.880 0.524 0.439 3.920 31.592 +0.150 sec 2.000 0.681 -0.461 -4.119 42.894 +0.200 sec 2.000 0.767 -0.634 -5.660 50.078 +0.250 sec 2.000 0.784 -0.667 -5.960 51.603 +0.300 sec 2.000 0.733 -0.567 -5.060 47.168 +0.350 sec 2.000 0.611 -0.322 -2.878 37.673 +0.400 sec 2.000 0.427 0.045 0.404 25.301 +0.450 sec 2.000 0.231 0.439 3.918 13.332 +0.500 sec 2.000 0.092 0.716 6.392 5.282 +WARNING : The size of the figure may not be as wide as you want. + diff --git a/Working_Examples/83/CH12/EX12.10/result_example_12_10_img.jpeg b/Working_Examples/83/CH12/EX12.10/result_example_12_10_img.jpeg Binary files differnew file mode 100755 index 0000000..f6279f5 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.10/result_example_12_10_img.jpeg diff --git a/Working_Examples/83/CH12/EX12.11/example_12_11.sce b/Working_Examples/83/CH12/EX12.11/example_12_11.sce new file mode 100755 index 0000000..33c64db --- /dev/null +++ b/Working_Examples/83/CH12/EX12.11/example_12_11.sce @@ -0,0 +1,173 @@ +//Chapter 12 +//Example 12.11 +//page 488 +//To plot swing curves for fault cleared at 0.275s and 0.08s of a multimachine system +clear;clc; + +xd1=%i*0.067;xd2=%i*0.1; + +//primitive admittances of the lines +y45=1/(0.018+%i*0.11); B45=%i*0.113; +y51=1/(0.004+%i*0.0235); B51=%i*0.098; +y41=1/(0.007+%i*0.04); B41=%i*0.041; +z24=(%i*0.022); +z35=(%i*0.04); + +//Bus data and prefault load-flow values in PU +V1=1.0; P1=-3.8083; Q1=-0.2799; Pl1=0; Ql2=0; +V2=1.0194+%i*0.1475; P2=3.25; Q2=0.6986; Pl2=0; Ql2=0; +V3=1.0121+%i*0.1271; P3=2.10; Q3=0.3110; Pl3=0; Ql3=0; +V4=1.0146+%i*0.0767; P4=0; Q4=1.0; Pl4=1.0; Ql4=0.44; +V5=1.0102+%i*0.0439; P5=0; Q5=0; Pl5=0.5; Ql5=0.16; + + +// To find voltage behind transient reactances before the occurance of fault + +I2=(P2-%i*Q2)/(V2'); +E2=V2+I2*xd1; +E1=V1; +I3=(P3-%i*Q3)/(V3'); +E3=V3+I3*xd2; + +//converting loads into their admittances +Yl4=(Pl4-%i*Ql4)/(V4*V4'); +Yl5=(Pl5-%i*Ql5)/(V5*V5'); + +//forming augmented Bus admittance matrix before the occurance of fault +Y11=y41+y51;Y12=0;Y13=0;Y14=-y41;Y15=-y51; +Y21=Y12;Y22=1/(xd1+z24);Y23=0;Y24=-(1/(z24+xd1));Y25=0; +Y31=0;Y32=0;Y33=1/(z35+xd2);Y34=0;Y35=-1/(z35+xd2); +Y41=Y14;Y42=Y24;Y43=Y34;Y44=y41+Yl4+y45+B45+B41-Y24;Y45=-y45; +Y51=Y15;Y52=Y25;Y53=Y35;Y54=Y45;Y55=Yl5+y45+y51+B45+B51-Y35; + +Ybus=[Y11 Y12 Y13 Y14 Y15; + Y21 Y22 Y23 Y24 Y25; + Y31 Y32 Y33 Y34 Y35; + Y41 Y42 Y43 Y44 Y45; + Y51 Y52 Y53 Y54 Y55]; + +printf('\n Augmented prefault bus admittance matrix (in PU) is given by\n\n Ybus=\n'); +disp(Ybus); +///////to find the Ybus during fault +Ybus_1=Ybus([1:3,5],[1:3,5]); +n=4 +for k=1:n-1 + for j=1:n-1 + Ybus_during_fault(k,j)=Ybus_1(k,j)-(Ybus_1(k,n)*Ybus_1(n,j))/Ybus_1(n,n); + end +end +printf('\n\n\n Bus admittance matrix during fault (in PU) is given by\n\n Ybus_during_fault=\n'); +disp(Ybus_during_fault); + +//to find Ybus after the fault has been cleared +Y45=0;Y54=0;Y44=Y44-y45-B45;Y55=Y55-y45-B45; +Ybus_2=[Y11 Y12 Y13 Y14 Y15; + Y21 Y22 Y23 Y24 Y25; + Y31 Y32 Y33 Y34 Y35; + Y41 Y42 Y43 Y44 Y45; + Y51 Y52 Y53 Y54 Y55]; + +//eliminating node 5 from Ybus_2 +n=5 +for k=1:n-1 + for j=1:n-1 + Ybus_3(k,j)=Ybus_2(k,j)-(Ybus_2(k,n)*Ybus_2(n,j))/Ybus_2(n,n); + end +end + +//eliminating node 4 to get post fault Ybus +n=4 +for k=1:n-1 + for j=1:n-1 + Ybus_post_fault(k,j)=Ybus_3(k,j)-(Ybus_3(k,n)*Ybus_3(n,j))/Ybus_3(n,n); + end +end +printf('\n\n\n Bus admittance matrix postfault (in PU) is given by\n\n Ybus_post_fault=\n'); +disp(Ybus_post_fault); +printf('\n\n\n'); +//During fault power angle equation +delta3=0:0.1:180; +Pe2f=0; +Pe3f=(abs(E3'))^2*real(Ybus_during_fault(3,3))+abs(E1')*abs(E3')*abs(Ybus_during_fault(3,1))*cosd(delta3-atand(imag(Ybus_during_fault(1,3))/real(Ybus_during_fault(1,3)))); + +//Postfault power angle equations +delta2=0:0.1:180; +Pe2pf=(abs(E2'))^2*real(Ybus_post_fault(2,2))+abs(E1')*abs(E2')*abs(Ybus_post_fault(2,1))*cosd(delta2-atand(imag(Ybus_post_fault(1,2))/real(Ybus_post_fault(1,2)))); +Pe3pf=(abs(E3'))^2*real(Ybus_post_fault(3,3))+abs(E1')*abs(E3')*abs(Ybus_post_fault(3,1))*cosd(delta3-atand(imag(Ybus_post_fault(1,3))/real(Ybus_post_fault(1,3)))); + +//mechanical inputs which are assumed to be constant are given by +Pm2=max(real(E2*I2')); +Pm3=max(real(E3*I3')); + +//xdot function defining the swing equations of each of the machines +function xdot=mac2(t,x,tc) + xdot(1)=x(2); + if t>tc then + xdot(2)=180*50*(Pm2-(0.6012+8.365*sind(x(1)-1.662)))/12;//swing equation after clearing the fault + else + xdot(2)=180*50*(Pm2-(0))/12; //swing equation before clearing the fault + end + +endfunction + +function xdot=mac3(t,x,tc) + xdot(1)=x(2); + if t>tc then + xdot(2)=180*50*(Pm3-(0.1823+6.5282*sind(x(1)-0.8466)))/9;//swing equation after clearing the fault + else + xdot(2)=180*50*(Pm3-(0.1561+5.531*sind(x(1)-0.755)))/9; //swing equation before clearing the fault + end + +endfunction + +//to find the solution of swing equation to draw the swing curves + +//to draw the swing curves for machines 2 and 3 for example12.11 for clearing at 0.275 sec +subplot(2,1,1) +x_1_0=[19.354398,0]';t0=0; T=0:0.01:1;T=T'; +x_2_0=[18.2459,0]';tc=0.275; +sol1=ode(x_1_0,t0,T,mac2); +sol2=ode(x_2_0,t0,T,mac3); + +plot(T(1:20),sol1(1,1:20)',T,sol2(1,:)'); +set(gca(),"grid",[1 1]); +legend('Machine 2','Machine 3',[,1]); +title('Swing Curves for machines 2 and 3 of Example 12.11 for a clearing at '+string(tc)+' s'); +xstring(0.55,59,'Machine 1 is reference (infinte bus)'); +xlabel('Time (in seconds)----->'); +ylabel('Torque Angle (delta,deg)----->'); + + +//to draw the swing curves for machines 2 and 3 for example12.11 for clearing at 0.08 sec +subplot(2,1,2) +x_1_0=[19.354398,0]';t0=0; T=0:0.01:1;T=T'; +x_2_0=[18.2459,0]';tc=0.08; +sol1=ode(x_1_0,t0,T,mac2); +sol2=ode(x_2_0,t0,T,mac3); + +plot(T,sol1(1,:)',T,sol2(1,:)'); +set(gca(),"grid",[1 1]); +legend('Machine 2','Machine 3',[,4]); +title('Swing Curves for machines 2 and 3 of Example 12.11 for a clearing at '+string(tc)+' s'); +xstring(0.44,43,'Machine 1 is reference (infinte bus)'); +xlabel('Time (in seconds)----->'); +ylabel('Torque Angle (delta,deg)----->'); + +f=get("current_figure"); +f.figure_position=[0,15]; +f.figure_size=[565,1000]; + + + + + + + + + + + + + + + diff --git a/Working_Examples/83/CH12/EX12.11/result_example_12_11.txt b/Working_Examples/83/CH12/EX12.11/result_example_12_11.txt new file mode 100755 index 0000000..7e66326 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.11/result_example_12_11.txt @@ -0,0 +1,38 @@ + + + + Augmented prefault bus admittance matrix (in PU) is given by + + Ybus= + + 11.284152 - 65.612163i 0 0 - 4.244997 + 24.257126i - 7.0391553 + 41.355037i + 0 - 11.235955i 0 11.235955i 0 + 0 0 - 7.1428571i 0 7.1428571i + - 4.244997 + 24.257126i 11.235955i 0 6.659713 - 44.617911i - 1.4488088 + 8.8538313i + - 7.0391553 + 41.355037i 0 7.1428571i - 1.4488088 + 8.8538313i 8.9769945 - 57.297216i + + + + Bus admittance matrix during fault (in PU) is given by + + Ybus_during_fault= + + 5.7986033 - 35.768947i 0 - 0.0681253 + 5.1661269i + 0 - 11.235955i 0 + - 0.0681253 + 5.1661269i 0 0.1361683 - 6.2737394i + + + + Bus admittance matrix postfault (in PU) is given by + + Ybus_post_fault= + + 1.3931179 - 14.011919i - 0.2213865 + 7.628982i - 0.0901365 + 6.0974822i + - 0.2213865 + 7.628982i 0.5005328 - 7.7897867i 0 + - 0.0901365 + 6.0974822i 0 0.1590837 - 6.1167759i + + + +WARNING : The size of the figure may not be as wide as you want. + + diff --git a/Working_Examples/83/CH12/EX12.11/result_example_12_11_img.jpeg b/Working_Examples/83/CH12/EX12.11/result_example_12_11_img.jpeg Binary files differnew file mode 100755 index 0000000..5660f18 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.11/result_example_12_11_img.jpeg diff --git a/Working_Examples/83/CH12/EX12.12/example_12_12.sce b/Working_Examples/83/CH12/EX12.12/example_12_12.sce new file mode 100755 index 0000000..647cf0a --- /dev/null +++ b/Working_Examples/83/CH12/EX12.12/example_12_12.sce @@ -0,0 +1,97 @@ +//Chapter 12 +//Example 12.12 +//page 500 +//To plot swing curves for single pole and three pole switching +clear;clc; + +Xg0=0.1;Xg1=0.3;Xg2=0.15;E=1.2;H=4.167; +Xt=0.1; +Xl0=1.0;Xl1=0.3;Xl2=0.3;V=1; + +//transfer reactance during LG fault(fault not cleared) by star delta transformation is given by +X12_fault=1.45; + +//transfer reactance after LG faulted line open is given by +X12_fault_open=1.22; + +//transfer reactance when all the lines are healthy is given by +X12_healthy=0.8; + +//power angle equations +delta=0:0.1:180; + +//Prefault condition +Pe1=(E*V)*sind(delta)/X12_healthy; +//for an initial load of 1PU +delta0=asind(1/1.5); + +//during fault +Pe2=(E*V)*sind(delta)/X12_fault; + +//during single pole switching +Pe3=(E*V)*sind(delta)/X12_fault_open; + +//during three pole switching +Pe4=0; + +//after reclosure +Pe5=Pe1; + +Pm=1.0; + +//xdot function defining the swing equations of machine during single poling +function xdot=mac_1_pole(t,x,tc,tr) + xdot(1)=x(2); + if (t<=tc) then + xdot(2)=180*50*(Pm-(0.827*sind(x(1))))/12; //swing equation before clearing the faulted line + elseif (t>tc)&(t<tr) then + xdot(2)=180*50*(Pm-(0.985*sind(x(1))))/12;//swing equation during single pole switching + elseif (t>=tr) then + xdot(2)=180*50*(Pm-(1.5*sind(x(1))))/12; //after reclosure + end +endfunction + +//xdot function defining the swing equations of machine during three poling +function xdot=mac_3_pole(t,x,tc,tr) + xdot(1)=x(2); + if (t>tc)&(t<tr) then + xdot(2)=180*50*(Pm-0)/4.167;//swing equation during three pole switching + elseif (t<=tc) then + xdot(2)=180*50*(Pm-(0.827*sind(x(1))))/4.167; //swing equation before clearing the faulted line + elseif (t>=tr) then + xdot(2)=180*50*(Pm-(1.5*sind(x(1))))/4.167; //after reclosure + end +endfunction + +//to find the solution of swing equation to draw the swing curves + +//to draw the swing curves for three pole switching with reclosure +subplot(2,1,1) +x_1_0=[41.8,0]';t0=0; T=0:0.001:0.65;T=T'; +tc=0.075;tr=0.325; +sol1=ode(x_1_0,t0,T,mac_3_pole); +plot(T,sol1(1,:)'); +set(gca(),"grid",[1 1]); +title('Swing Curve for three pole switching at '+string(tc)+' s'+' and reclosure at '+string(tr)+' s','fontsize',3); +xset("font size",3) +xstring(0.2,300,'MACHINE UNSTABLE'); +xlabel('Time (in seconds)----->'); +ylabel('Torque Angle (delta,deg)----->'); + +//to draw the swing curves for single pole switching with reclosure +subplot(2,1,2) +x_1_0=[41.8,0]';t0=0; T=0:0.001:2.2;T=T'; +tc=0.075;tr=0.325; +sol2=ode(x_1_0,t0,T,mac_1_pole); +plot(T,sol2(1,:)'); +set(gca(),"grid",[1 1]); +title('Swing Curve for single pole switching at '+string(tc)+' s'+' and reclosure at '+string(tr)+' s','fontsize',3); +xset("font size",3) +xstring(1.2,50,'MACHINE STABLE'); +xlabel('Time (in seconds)----->'); +ylabel('Torque Angle (delta,deg)----->'); + +f=get("current_figure"); +f.figure_position=[0,15]; +f.figure_size=[560,1000]; + diff --git a/Working_Examples/83/CH12/EX12.12/result_12_12.jpeg b/Working_Examples/83/CH12/EX12.12/result_12_12.jpeg Binary files differnew file mode 100755 index 0000000..8614513 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.12/result_12_12.jpeg diff --git a/Working_Examples/83/CH12/EX12.2/example_12_2.sce b/Working_Examples/83/CH12/EX12.2/example_12_2.sce new file mode 100755 index 0000000..198bc31 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.2/example_12_2.sce @@ -0,0 +1,45 @@ +//Chapter 12 +//Example 12.1 +//page 448 +//To calculate steady state power limit +clear;clc; + +Xdg=1*%i; //generator's +Xdm=1*%i; //motor's +Xt=0.1*%i; //transformers +Xl=0.25*%i; //transmission line's +Xc=-1*%i; //static capacitor's +Xi=1*%i; //inductive reactor +Eg=1.2; //generator's internal voltage +Em=1; //motor's internal voltage + +//case(i) steady state power limit without reactor +P1=(abs(Eg)*abs(Em))/(abs(Xdg+Xt+Xl+Xt+Xdm)); +printf('\n\n Steady state power limit without reactor = %0.5f pu',P1); + +//case(ii) steady state power limit with capacitive reactor +//three arms of star connected reactances are +Xa=Xdg+Xt+Xl; //from generator side +Xb=Xdm+Xt; //from load side +Xc=Xc; //from reactor side + +//converting star to delta +//reactance between generator side to load side is +Xab=(Xa*Xb+Xb*Xc+Xc*Xa)/Xc; +//power limit is +P2=(abs(Eg)*abs(Em))/(abs(Xab)); +printf('\n\n Steady state power limit with capacitive reactor = %0.5f pu',P2); + +//case(iii) steady state power limit with inductive reactor +//three arms of star connected reactances are +Xa=Xdg+Xt+Xl; //from generator side +Xb=Xdm+Xt; //from load side +Xc=Xi; //from reactor side + +//converting star to delta +//reactance between generator side to load side is +Xab=(Xa*Xb+Xb*Xc+Xc*Xa)/Xc; +//power limit is +P3=(abs(Eg)*abs(Em))/(abs(Xab)); +printf('\n\n Steady state power limit with inductive reactor = %0.5f pu',P3); + diff --git a/Working_Examples/83/CH12/EX12.2/result_example_12_2.txt b/Working_Examples/83/CH12/EX12.2/result_example_12_2.txt new file mode 100755 index 0000000..20581cd --- /dev/null +++ b/Working_Examples/83/CH12/EX12.2/result_example_12_2.txt @@ -0,0 +1,7 @@ + + + Steady state power limit without reactor = 0.48980 pu + + Steady state power limit with capacitive reactor = 1.24352 pu + + Steady state power limit with inductive reactor = 0.30496 pu diff --git a/Working_Examples/83/CH12/EX12.3/example_12_3.sce b/Working_Examples/83/CH12/EX12.3/example_12_3.sce new file mode 100755 index 0000000..e01d48d --- /dev/null +++ b/Working_Examples/83/CH12/EX12.3/example_12_3.sce @@ -0,0 +1,62 @@ +//Chapter 12 +//Example 12.3 +//page 450 +//To calculate maximum power transferred +clear;clc; + +Vt=1.0; //generator terminal voltage +V=1.0 ; //infinite bus voltage +Pe=1.0 ; //power delivered +Xd=0.25*%i ; //generator's transient reactance +Xl=0.5*%i ; //transmission line's reactance +Xt=0.1*%i; //transformer's reactance + +//to calculate alpha +alpha=asind(Pe*abs(Xt+Xl/2)/(abs(Vt)*abs(V))); +printf('\n\nAlpha=%0.1f deg',alpha); + +//current to infinite bus +I=(Vt*(cosd(alpha)+%i*sind(alpha))-V)/(Xt+Xl/2); +printf('\nCurrent to infinte bus=%d+j%0.3f pu',real(I),imag(I)); + +//votage behind transient reactance +E=Vt+I*(Xd+Xt+Xl/2); +printf('\nVoltage behind transient reactance= E''= %0.3f+j%0.1f pu = %0.3f @%0.1f deg pu\n\n',real(E),imag(E),abs(E),atand(imag(E)/real(E))); + +delta=0:0.001:180; + +//case(a) Maximum power when system is healthy +X12=Xd+Xt+Xl/2; +Pmax=abs(V)*abs(E)/abs(X12); +Pe1=Pmax*sind(delta); +printf('Maximum power that can be transferred under the following condition is') +printf('\n\n(a)System Healthy:'); +printf('\nPmax=%0.2f pu',Pmax); +printf('\nPe=%0.2f sin(delta) pu',Pmax); + +//case(b) One line short in the middle +//converting bus3 to delta40 +Xa=Xd+Xt; //generator side +Xb=Xl; //healthy transmission line side +Xc=Xl/2; //unhealthy line side +X12=(Xa*Xb+Xb*Xc+Xc*Xa)/(Xc); +Pmax=abs(V)*abs(E)/abs(X12); +Pe2=Pmax*sind(delta); +printf('\n\n(b)One line shorted in the middle:'); +printf('\nPmax=%0.4f pu',Pmax); +printf('\nPe=%0.4f sin(delta) pu',Pmax); + +//case(c) One line open +X12=Xd+Xt+Xl; +Pmax=abs(V)*abs(E)/abs(X12); +Pe3=Pmax*sind(delta); +printf('\n\n(c)One line open :'); +printf('\nPmax=%0.4f pu',Pmax); +printf('\nPe=%0.4f sin(delta) pu',Pmax); + +//plotting Power angle curves +plot(delta,Pe1,delta,Pe2,delta,Pe3); +legend(['1.79sin(delta)';'0.694sin(delta)';'1.265sin(delta)']); +title("Power angle curves"); +xlabel("Delta"); +ylabel("Pe");
\ No newline at end of file diff --git a/Working_Examples/83/CH12/EX12.3/result_example_12_3.txt b/Working_Examples/83/CH12/EX12.3/result_example_12_3.txt new file mode 100755 index 0000000..7ba9b55 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.3/result_example_12_3.txt @@ -0,0 +1,20 @@ + + +Alpha=20.5 deg +Current to infinte bus=1+j0.181 pu +Voltage behind transient reactance= E'= 0.892+j0.6 pu = 1.075 @33.9 deg pu + +Maximum power that can be transferred under the following condition is + +(a)System Healthy: +Pmax=1.79 pu +Pe=1.79 sin(delta) pu + +(b)One line shorted in the middle: +Pmax=0.6933 pu +Pe=0.6933 sin(delta) pu + +(c)One line open : +Pmax=1.2643 pu +Pe=1.2643 sin(delta) pu + diff --git a/Working_Examples/83/CH12/EX12.3/result_example_12_3_img.jpeg b/Working_Examples/83/CH12/EX12.3/result_example_12_3_img.jpeg Binary files differnew file mode 100755 index 0000000..22682b4 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.3/result_example_12_3_img.jpeg diff --git a/Working_Examples/83/CH12/EX12.4/example_12_4.sce b/Working_Examples/83/CH12/EX12.4/example_12_4.sce new file mode 100755 index 0000000..bcd57a0 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.4/example_12_4.sce @@ -0,0 +1,20 @@ +//Chapter 12 +//Example 12.4 +//page 453 +//To calculate acceleration and rotor angle +clear;clc; + +delta0=33.9; //initial rotor angle +H=4; //inertia constant +f=50; //frequency +Pm=1; //mechanical power input +t=0.05; //time interval +angular_acceleration=(Pm-0.694*sind(delta0))*180*f/H; +delta_change=0.5*angular_acceleration*t^2; +delta_new=delta0+delta_change; +new_angular_acceleration=(Pm-0.694*sind(delta_new))*180*f/H; + +printf('\n\nInitial rotor angular acceleration = %d elect deg/s^2',angular_acceleration); +printf('\nDelta_change=%0.1f deg',delta_change); +printf('\nNew delta =delta1=%0.1f deg',delta_new); +printf('\nAngular acceleration at the end of 0.05s =%d elect deg/s^2\n\n',new_angular_acceleration); diff --git a/Working_Examples/83/CH12/EX12.4/result_example_12_4.txt b/Working_Examples/83/CH12/EX12.4/result_example_12_4.txt new file mode 100755 index 0000000..e05c3a4 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.4/result_example_12_4.txt @@ -0,0 +1,7 @@ + + +Initial rotor angular acceleration = 1379 elect deg/s^2 +Delta_change=1.7 deg +New delta =delta1=35.6 deg +Angular acceleration at the end of 0.05s =1340 elect deg/s^2 + diff --git a/Working_Examples/83/CH12/EX12.5/example_12_5.sce b/Working_Examples/83/CH12/EX12.5/example_12_5.sce new file mode 100755 index 0000000..ed53369 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.5/example_12_5.sce @@ -0,0 +1,35 @@ +//Chapter 12 +//Example 12.5 +//page 456 +//To calculate frequency of natural oscilations +clear;clc; + +E=1.2; //no load voltage +V=1; //infinite bus voltage +Xg=1.2; // synchronous generator reactance +Xtl=0.6 //transformer anf transmission line reactance +H=4; //inertia constant + +//case(i) 50% loading +delta0=asind(0.5); +synchronizing_coefficien=(abs(E)*abs(V)*cosd(delta0))/(Xg+Xtl); +M=H/(%pi*50); +p=%i*sqrt(synchronizing_coefficien/M); +f=abs(p)/(2*%pi); +printf('\n\ncase(i) For 50%% loading'); +printf('\nDelta_0=%d deg',delta0); +printf('\nsynchronizing_coefficient=%0.3f MW(pu)/elect rad',synchronizing_coefficien); +printf('\nM=%0.4f s^2/elect rad',M); +printf('\nFrequency of oscillations=%0.2f rad/sec = %0.3f Hz\n',abs(p),f); + +//case(i) 80% loading +delta0=asind(0.8); +synchronizing_coefficien=(abs(E)*abs(V)*cosd(delta0))/(Xg+Xtl); +M=H/(%pi*50); +p=%i*sqrt(synchronizing_coefficien/M); +f=abs(p)/(2*%pi); +printf('\n\ncase(ii) For 80%% loading'); +printf('\nDelta_0=%d deg',delta0); +printf('\nSynchronizing_coefficient=%0.3f MW(pu)/elect rad',synchronizing_coefficien); +printf('\nM=%0.4f s^2/elect rad',M); +printf('\nFrequency of oscillations=%0.2f rad/sec = %0.3f Hz\n',abs(p),f);
\ No newline at end of file diff --git a/Working_Examples/83/CH12/EX12.5/result_example_12_5.txt b/Working_Examples/83/CH12/EX12.5/result_example_12_5.txt new file mode 100755 index 0000000..d48c344 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.5/result_example_12_5.txt @@ -0,0 +1,15 @@ + + + +case(i) For 50% loading +Delta_0=30 deg +synchronizing_coefficient=0.577 MW(pu)/elect rad +M=0.0255 s^2/elect rad +Frequency of oscillations=4.76 rad/sec = 0.758 Hz + + +case(ii) For 80% loading +Delta_0=53 deg +Synchronizing_coefficient=0.400 MW(pu)/elect rad +M=0.0255 s^2/elect rad +Frequency of oscillations=3.96 rad/sec = 0.631 Hz diff --git a/Working_Examples/83/CH12/EX12.6/example_12_6.sce b/Working_Examples/83/CH12/EX12.6/example_12_6.sce new file mode 100755 index 0000000..1507d88 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.6/example_12_6.sce @@ -0,0 +1,23 @@ +//Chapter 12 +//Example 12.6 +//page 457 +//To find steady state power limit +clear;clc; + +V=1.0; //infinite bus volatge +Vt=1.2; //terminal volatge +Xd=0.5*%i; //synchronous generator reactance +X=%i; //series reactance +//by solving the expressions given in the textbook +theta=acosd(0.5/1.8); +printf('\n\ntheta=%0.3f deg',theta); +Vt=Vt*(cosd(theta)+%i*sind(theta)); +printf('\nVt=%0.3f+j%0.3f pu',real(Vt),imag(Vt)); +I=(Vt-V)/X; +printf('\nI=%0.3f+j%0.3f pu',real(I),imag(I)); +E=Vt+Xd*I; +printf('\nE=%0.3f @ %d deg pu',abs(E),atand(imag(E)/real(E))); +Pmax=(abs(E)*abs(V))/abs(X+Xd); +printf('\n\nSteady state power limit is given by:\tPmax=%0.3f pu',Pmax); +E=1.2;Pmax=(abs(E)*abs(V))/abs(X+Xd); +printf('\n\nIf the generator emf is held fixed at a value 1.2pu,steady state power limit would be :\t Pmax=%0.2f pu\n\n',Pmax);
\ No newline at end of file diff --git a/Working_Examples/83/CH12/EX12.6/result_example_12_6.txt b/Working_Examples/83/CH12/EX12.6/result_example_12_6.txt new file mode 100755 index 0000000..b7933b1 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.6/result_example_12_6.txt @@ -0,0 +1,10 @@ + +theta=73.872 deg +Vt=0.333+j1.153 pu +I=1.153+j0.667 pu +E=1.729 @ -90 deg pu + +Steady state power limit is given by: Pmax=1.153 pu + +If the generator emf is held fixed at a value 1.2pu,steady state power limit would be : Pmax=0.80 pu + diff --git a/Working_Examples/83/CH12/EX12.7/example_12_7.sce b/Working_Examples/83/CH12/EX12.7/example_12_7.sce new file mode 100755 index 0000000..5e2663f --- /dev/null +++ b/Working_Examples/83/CH12/EX12.7/example_12_7.sce @@ -0,0 +1,45 @@ +//Chapter 12 +//Example 12.7 +//page 475 +//To calculate critcal clearing angle +clear;clc; + +Xd=0.25; //direct axis transient reactance of the generator +Xl1=0.5; Xl2=0.4; //reactances of transmission line +E=1.2; //voltage behind transient reactance +Xinf=0.05; //reactnce before infinite bus +V=1; //infinite bus voltage +Pm=1; //mechanical input to the generator +delta=0:1:180; + +//Normal operation (prefault) +X1=Xd+(Xl1*Xl2/(Xl1+Xl2))+Xinf; //equivalent reactance between sending ened and receiving end +//Power angle equation before the fault is +Pe1=(E*V/X1)*sind(delta); +//prefault operating power =1.0pu +delta0=asin(1/max(Pe1)); +printf('Normal Operation (prefault):\n'); +printf('X1=%0.3f PU\n',X1); +printf('Pe1=%0.1fsin(delta)\n\n',max(Pe1)); + +//during fault there will be no power transfer +Pe2=0; +printf('During Fault:\n'); +printf('Pe2=%d\n\n',Pe2); + +//Post fault operation(fault cleared by opening the faulted line) +X3=Xd+Xl1+Xinf; +Pe3=(E*V/X3)*sind(delta); +delta_max=%pi-asin(Pm/max(Pe3)); +//from A1 and A2, we solve A1=A2 +deff('[y]=fx(delta_cr)',"y=1.5*cos(delta_cr)+delta_cr-1.293-Pm*(delta_cr-delta0)"); +delta_cr=fsolve(0.45,fx); +printf('Post fault operation(fault cleared by opening the faulted line):\n'); +printf('X3=%0.1fPU\n',X3); +printf('Pe3=%0.1fsin(delta)\n',max(Pe3)); +printf('Delta_cr=%0.4f rad =%0.2f deg',delta_cr,delta_cr*180/%pi); +plot(delta,Pe1,delta,Pe3,delta,Pm*ones(1,length(delta))); +legend('Pe1=2.3sin(delta)','Pe3=1.5sin(delta)','Pm=1'); +title('Power angle Diagram for example 12.7'); +xlabel('delta (in degrees)----->'); +ylabel('Electrical output (Pe)----->');
\ No newline at end of file diff --git a/Working_Examples/83/CH12/EX12.7/result_example_12_7.txt b/Working_Examples/83/CH12/EX12.7/result_example_12_7.txt new file mode 100755 index 0000000..63fb998 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.7/result_example_12_7.txt @@ -0,0 +1,12 @@ + +Normal Operation (prefault): +X1=0.522 PU +Pe1=2.3sin(delta) + +During Fault: +Pe2=0 + +Post fault operation(fault cleared by opening the faulted line): +X3=0.8PU +Pe3=1.5sin(delta) +Delta_cr=0.9742 rad =55.82 deg diff --git a/Working_Examples/83/CH12/EX12.7/result_example_12_7_img.jpeg b/Working_Examples/83/CH12/EX12.7/result_example_12_7_img.jpeg Binary files differnew file mode 100755 index 0000000..42d4b8e --- /dev/null +++ b/Working_Examples/83/CH12/EX12.7/result_example_12_7_img.jpeg diff --git a/Working_Examples/83/CH12/EX12.8/example_12_8.sce b/Working_Examples/83/CH12/EX12.8/example_12_8.sce new file mode 100755 index 0000000..68b4863 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.8/example_12_8.sce @@ -0,0 +1,50 @@ +//Chapter 12 +//Example 12.8 +//page 477 +//To calculate critcal clearing angle +clear;clc; + +Xd=0.25; //direct axis transient reactance of the generator +Xl1=0.28; Xl2_1=0.14;Xl2_2=0.14; //reactances of transmission line +E=1.2; //voltage behind transient reactance +Xinf=0.17; //reactnce before infinite bus +V=1; //infinite bus voltage +Pm=1; //mechanical input to the generator +Xtr=0.15; //transformer reactance +delta=0:1:180; + +//prefault operation +X1=Xd+Xinf+(Xtr+Xl1+Xtr)/2; //transfer reactance between generator and infinte bus +Pe1=E*V*sind(delta)/X1; +delta0=asin(1/max(Pe1)); +printf('Normal Operation (prefault):\n'); +printf('X1=%0.3f PU\n',X1); +printf('Pe1=%0.2fsin(delta)\n',max(Pe1)); +printf('delta0=%0.3fPU\n\n',delta0); +//during fault there will be no power transfer +//using star delta transformation given in the textbook +X2=2.424; +Pe2=E*V*sind(delta)/X2; +printf('During Fault:\n'); +printf('X2=%0.3f PU\n',X2); +printf('Pe2=%0.3fsin(delta)\n\n',max(Pe2)); + +//Post fault operation(faulty line switched off) +X3=Xd+Xinf+(Xtr+Xl1+Xtr); +Pe3=E*V*sind(delta)/X3; +delta_max=%pi-asin(Pm/max(Pe3)); +//from A1 and A2, we solve A1=A2 +deff('[y]=fx(delta_cr)',"y=-delta0+max(Pe2)*cos(delta_cr)-0.399-0.661-max(Pe3)*cos(delta_cr)+delta_max"); +delta_cr=fsolve(0.45,fx); +printf('Post fault operation(faulty line switched off):\n'); +printf('X3=%0.1fPU\n',X3); +printf('Pe3=%0.1fsin(delta)\n',max(Pe3)); +printf('Delta_cr=%0.4f rad =%0.2f deg',delta_cr,delta_cr*180/%pi); +plot(delta,Pe1,delta,Pe2,delta,Pe3,delta,Pm); +legend('Pe1=1.69sin(delta)','Pe2=0.495sin(delta)','Pe3=1.2sin(delta)','Pm=1'); +title('Power angle Diagram for example 12.8'); +xlabel('delta (in degrees)----->'); +ylabel('Electrical output (Pe)----->'); +f=get("current_figure") +f.figure_position=[0,15] +f.figure_size=[750,750] diff --git a/Working_Examples/83/CH12/EX12.8/result_example_12_8.jpeg b/Working_Examples/83/CH12/EX12.8/result_example_12_8.jpeg Binary files differnew file mode 100755 index 0000000..424f5aa --- /dev/null +++ b/Working_Examples/83/CH12/EX12.8/result_example_12_8.jpeg diff --git a/Working_Examples/83/CH12/EX12.8/result_example_12_8.txt b/Working_Examples/83/CH12/EX12.8/result_example_12_8.txt new file mode 100755 index 0000000..47c5db1 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.8/result_example_12_8.txt @@ -0,0 +1,16 @@ + + +Normal Operation (prefault): +X1=0.710 PU +Pe1=1.69sin(delta) +delta0=0.633PU + +During Fault: +X2=2.424 PU +Pe2=0.495sin(delta) + +Post fault operation(faulty line switched off): +X3=1.0PU +Pe3=1.2sin(delta) +Delta_cr=0.8536 rad =48.91 deg + diff --git a/Working_Examples/83/CH12/EX12.9/example_12_9.sce b/Working_Examples/83/CH12/EX12.9/example_12_9.sce new file mode 100755 index 0000000..8fe1976 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.9/example_12_9.sce @@ -0,0 +1,19 @@ +//Chapter 12 +//Example 12.9 +//page 479 +//To calculate critcal clearing angle +clear;clc; +Pmax1=2; // prefault(2 lines) +Pmax2=0.5; //deuring fault +Pmax3=1.5; //post fault(1 line) +Pm=1; //initial loading + +delta0=asin(Pm/Pmax1); +delta_max=%pi-asin(Pm/Pmax3); + +//to find critical angle,using eq.12.67 +delta_cr=acos((Pm*(delta_max-delta0)-Pmax2*cos(delta0)+Pmax3*cos(delta_max))/(Pmax3-Pmax2)); +printf('Pmax1=%0.1f PU\t Pmax2=%0.2f PU\t Pmax3=%0.2f PU\n\n',Pmax1,Pmax2,Pmax3); +printf('Delta0=%0.3f rad\n\n',delta0); +printf('Delta_max=%0.3f rad\n\n',delta_max); +printf('Delta_cr=%0.3f rad =%0.2f deg\n\n',delta_cr,delta_cr*180/%pi); diff --git a/Working_Examples/83/CH12/EX12.9/result_example_12_9.txt b/Working_Examples/83/CH12/EX12.9/result_example_12_9.txt new file mode 100755 index 0000000..bad40c5 --- /dev/null +++ b/Working_Examples/83/CH12/EX12.9/result_example_12_9.txt @@ -0,0 +1,11 @@ + + +Pmax1=2.0 PU Pmax2=0.50 PU Pmax3=1.50 PU + +Delta0=0.524 rad + +Delta_max=2.412 rad + +Delta_cr=1.227 rad =70.29 deg + + diff --git a/Working_Examples/83/CH13/EX13.1/example_13_1.sce b/Working_Examples/83/CH13/EX13.1/example_13_1.sce new file mode 100755 index 0000000..0e6257c --- /dev/null +++ b/Working_Examples/83/CH13/EX13.1/example_13_1.sce @@ -0,0 +1,180 @@ +//Chapter 13 +//Example 13.1 +//page 522 +//To find the generation shift factors and the line outage distribution factors +clear;clc; + +//this problem can be thought to be solved by using gauss-siedel method using Zbus(X matrix given in table 13.1),but then in this method we need total line charging admittances to ground at each bus.Hence we cant solve this problem only using the given table 13.1,And we can use gauss-siedel method using Ybus by taking the values of impedances and line charging admittances of the system which is taken from the textbook "[1]Computer Methods in Power System Analysis,Stagg and El-Abiad,Page No 284" +//----------------------------------------------------------------------------------------------------------------------- + +// Function to form the Ybus for primitve admittance values and line charging admittance values +function Ybus=formYbus(y_l,y_lc) + Ybus=[y_l(1)+y_l(2)+y_lc(1)+y_lc(2) -y_l(1) -y_l(2) 0 0; + -y_l(1) y_l(1)+y_l(3)+y_l(4)+y_l(5)+y_lc(1)+y_lc(3)+y_lc(4)+y_lc(5) -y_l(3) -y_l(4) -y_l(5); + -y_l(2) -y_l(3) y_l(2)+y_l(3)+y_l(6)+y_lc(2)+y_lc(3)+y_lc(6) -y_l(6) 0; + 0 -y_l(4) -y_l(6) y_l(6)+y_l(4)+y_l(7)+y_lc(6)+y_lc(4)+y_lc(7) -y_l(7); + 0 -y_l(5) 0 -y_l(7) y_l(5)+y_l(7)+y_lc(5)+y_lc(7)]; +endfunction + +//Function to incorporate load flow analysis for a given system +function P_line=load_flow(E,Pg,Qg,Pl,Ql,y_l,y_lc) + + //to retrieve Ybus for the given network parameters + Y=formYbus(y_l,y_lc); + + //to form primitive admittance matrix and primitive line charging admittances that required later in the program + yl=[0 y_l(1) y_l(2) 0 0; + y_l(1) 0 y_l(3) y_l(4) y_l(5); + y_l(2) y_l(3) 0 y_l(6) 0; + 0 y_l(4) y_l(6) 0 y_l(7); + 0 y_l(5) 0 y_l(7) 0]; + yc=[0 y_lc(1) y_lc(2) 0 0; + y_lc(1) 0 y_lc(3) y_lc(4) y_lc(5); + y_lc(2) y_lc(3) 0 y_lc(6) 0; + 0 y_lc(4) y_lc(6) 0 y_lc(7); + 0 y_lc(5) 0 y_lc(7) 0]; + + // to optimize the evaluation, constants like KLs and YLs are evaluated only once outside the loop + KL2=((Pg(2)-Pl(2))-(Qg(2)-Ql(2)))/Y(2,2); + KL3=((Pg(3)-Pl(3))-(Qg(3)-Ql(3)))/Y(3,3); + KL4=((Pg(4)-Pl(4))-(Qg(4)-Ql(4)))/Y(4,4); + KL5=((Pg(5)-Pl(5))-(Qg(5)-Ql(5)))/Y(5,5); + + YL21=Y(2,1)/Y(2,2); YL23=Y(2,3)/Y(2,2); YL24=Y(2,4)/Y(2,2); YL25=Y(2,5)/Y(2,2); + YL31=Y(3,1)/Y(3,3); YL32=Y(3,2)/Y(3,3); YL34=Y(3,4)/Y(3,3); + YL42=Y(4,2)/Y(4,4); YL43=Y(4,3)/Y(4,4); YL45=Y(4,5)/Y(4,4); + YL52=Y(5,2)/Y(5,5); YL54=Y(5,4)/Y(5,5); + + //to calculate bus voltages (Refer[1] stagg,pg 285) + n=100; + for i=1:n + E(1)=E(1); + E(2)=(KL2/E(2)')-YL21*E(1)-YL23*E(3)-YL24*E(4)-YL25*E(5); + E(3)=(KL3/E(3)')-YL31*E(1)-YL32*E(2)-YL34*E(4); + E(4)=(KL4/E(4)')-YL42*E(2)-YL43*E(3)-YL45*E(5); + E(5)=(KL5/E(5)')-YL52*E(2)-YL54*E(4); + end + // to calculate line flows(Refer[1] stagg,pg 291) + for i=1:5 + for j=1:5 + S(i,j)=E(i)'*(E(i)-E(j))*yl(i,j)+E(i)'*E(i)*yc(i,j); + end + end + P_line=conj(S); //since P_line=P-jQ=conj(S) + +endfunction +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//First we will calculate the line flows for the system which operating under normal condition (without any congincy)[taken as Base system for comparision]// +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//ypq y'pq/2 line no Buscode(p-q) +yl1=1/(0.02+%i*0.06); ylc_1=%i*0.030; //l=1 line 1-2 +yl2=1/(0.08+%i*0.24); ylc_2=%i*0.025; //l=2 line 1-3 +yl3=1/(0.06+%i*0.18); ylc_3=%i*0.020; //l=3 line 2-3 +yl4=1/(0.06+%i*0.18); ylc_4=%i*0.020; //l=4 line 2-4 +yl5=1/(0.04+%i*0.12); ylc_5=%i*0.015; //l=5 line 2-5 +yl6=1/(0.01+%i*0.03); ylc_6=%i*0.010; //l=6 line 3-4 +yl7=1/(0.08+%i*0.24); ylc_7=%i*0.025; //l=7 line 4-5 + +y_l_vector=[yl1 yl2 yl3 yl4 yl5 yl6 yl7]; +y_lc_vector=[ylc_1 ylc_2 ylc_3 ylc_4 ylc_5 ylc_6 ylc_7]; + + +//Assumed voltage Generation load Buscode +// MW MVAR MW MVAR +E1=1.06+%i*0; Pg1=0; Qg1=%i*0; Pl1=0; Ql1=%i*0; //1 +E2=1+%i*0; Pg2=0.4; Qg2=%i*0.3; Pl2=0.2; Ql2=%i*0.1; //2 +E3=1+%i*0; Pg3=0; Qg3=%i*0; Pl3=0.45; Ql3=%i*0.15; //3 +E4=1+%i*0; Pg4=0; Qg4=%i*0; Pl4=0.40; Ql4=%i*0.05; //4 +E5=1+%i*0; Pg5=0; Qg5=%i*0; Pl5=0.60; Ql5=%i*0.10; //5 + +E=[E1 E2 E3 E4 E5]; Pg=[Pg1 Pg2 Pg3 Pg4 Pg5]; Qg=[Qg1 Qg2 Qg3 Qg4 Qg5]; +Pl=[Pl1 Pl2 Pl3 Pl4 Pl5]; Ql=[Ql1 Ql2 Ql3 Ql4 Ql5]; + +P_base=load_flow(E,Pg,Qg,Pl,Ql,y_l_vector,y_lc_vector); +P_base=P_base*100; //converting back to MW and MVARs + + + + +//////////////////////////////////////////////////////////////////////////////////////////////////////////// +//To find generation shift factor let us remove the generator at each of PV buses and calculate line flows// +//////////////////////////////////////////////////////////////////////////////////////////////////////////// + +//(i)when generator at slack bus trips + Pg1_old=Pg1; //required for the calculation of change in MWs + Pg1=0;Qg1=0; //generation remains same + Pg=[Pg1 Pg2 Pg3 Pg4 Pg5]; Qg=[Qg1 Qg2 Qg3 Qg4 Qg5]; //updating the changed values + + //conducting load flow studies + P_G_1=load_flow(E,Pg,Qg,Pl,Ql,y_l_vector,y_lc_vector); + P_G_1=P_G_1*100; //converting back to MW and MVARs + alpha1=(real(P_G_1)-real(P_base))/((Pg1_old-Pg1+0.001)*100); //0.001 is added to eliminate divide by zero error + alpha1=tril(alpha1); //only lower triangular matrix is required + l1=[alpha1(2,1) alpha1(3,1) alpha1(3,2) alpha1(4,2) alpha1(5,2) alpha1(4,3) alpha1(5,4)]; +//(ii)When generator at Bus2 trips + Pg2_old=Pg2; //required for the calculation of change in MWs + Pg2=0;Qg2=0; Pg1=0;Qg1=0; + Pg=[Pg1 Pg2 Pg3 Pg4 Pg5]; Qg=[Qg1 Qg2 Qg3 Qg4 Qg5]; //updating the changed values + + //conducting load flow studies + P_G_2=load_flow(E,Pg,Qg,Pl,Ql,y_l_vector,y_lc_vector); + P_G_2=P_G_2*100; //converting back to MW and MVARs + alpha2=(real(P_G_2)-real(P_base))/((Pg2_old-Pg2)*100); + alpha2=tril(alpha2); //only lower triangular matrix is required + l2=[alpha2(2,1) alpha2(3,1) alpha2(3,2) alpha2(4,2) alpha2(5,2) alpha2(4,3) alpha2(5,4)]; +//To print the results of generator shift factors + +printf('Generator Shift Factor for Five-bus System\n'); +printf('--------------------------------------------------------\n'); +printf('Lines\t\t\t Bus 1 \t\t\tBus 2\n'); +printf('--------------------------------------------------------\n'); +for i=1:7 + printf('l = %d\t\t\t %d\t\t\t%0.4f\n',i,l1(i),l2(i)); +end +printf('--------------------------------------------------------\n'); +///////////////////////////////////////////////////////////////////////////////////////////////// +//To find Line Outage Distribution Factors let us remove each line and calculate the line flows// +///////////////////////////////////////////////////////////////////////////////////////////////// + +//changing the network back to normal system +Pg2=0.4; Qg2=%i*0.3; + +//copying the original values of the network parameters +y_l_vector_normal=y_l_vector; y_lc_vector_normal=y_lc_vector; + Pg=[Pg1 Pg2 Pg3 Pg4 Pg5]; Qg=[Qg1 Qg2 Qg3 Qg4 Qg5]; //updating the changed values +//when jth line trips the load flow analysis is done as follows +for j=1:7 + y_l_vector(j)=0;y_lc_vector(j)=0; + P_L=load_flow(E,Pg,Qg,Pl,Ql,y_l_vector,y_lc_vector); //load flow anlysis + P_L=P_L*100; + select j, + case 1 then fi0=P_base(2,1), + case 2 then fi0=P_base(3,1), + case 3 then fi0=P_base(3,2), + case 4 then fi0=P_base(4,2), + case 5 then fi0=P_base(5,2), + case 6 then fi0=P_base(4,3), + case 7 then fi0=P_base(5,4), + end + d0=(real(P_L)-real(P_base))/real(fi0); + d(:,j)=[d0(2,1); d0(3,1); d0(3,2); d0(4,2); d0(5,2); d0(4,3); d0(5,4)]; + y_l_vector=y_l_vector_normal; y_lc_vector=y_lc_vector_normal; //changing the system back to normal +end + +//when a line trips power flow in that line is zero,this is not accounted in load flow. So accounting this by making all diagonal elemnts of d=0 +for i=1:7 + d(i,i)=0; +end + +//To print the results of line outage distribution factors +printf('\n\n\n\nLine Outage Distribution Factor for Five-bus System\n'); +printf('------------------------------------------------------------------------------------------------------------------------\n'); +printf('Lines \t\tj=1\t\tj=2\t\tj=3\t\tj=4\t\tj=5\t\tj=6\t\tj=7\n'); +printf('------------------------------------------------------------------------------------------------------------------------\n'); +for l=1:7 + printf('l = %d\t\t%0.4f\t\t%0.4f\t\t%0.4f\t\t%0.4f\t\t%0.4f\t\t%0.4f\t\t%0.4f\n',l,d(l,1),d(l,2),d(l,3),d(l,4),d(l,5),d(l,6),d(l,7)); +end +printf('------------------------------------------------------------------------------------------------------------------------\n\n\n'); + + + diff --git a/Working_Examples/83/CH13/EX13.1/result_example_13_1.txt b/Working_Examples/83/CH13/EX13.1/result_example_13_1.txt new file mode 100755 index 0000000..ce2c510 --- /dev/null +++ b/Working_Examples/83/CH13/EX13.1/result_example_13_1.txt @@ -0,0 +1,32 @@ + +Generator Shift Factor for Five-bus System +-------------------------------------------------------- +Lines Bus 1 Bus 2 +-------------------------------------------------------- +l = 1 0 -0.8374 +l = 2 0 -0.1599 +l = 3 0 0.0716 +l = 4 0 0.0577 +l = 5 0 0.0299 +l = 6 0 -0.0880 +l = 7 0 -0.0299 +-------------------------------------------------------- + + + + +Line Outage Distribution Factor for Five-bus System +------------------------------------------------------------------------------------------------------------------------ +Lines j=1 j=2 j=3 j=4 j=5 j=6 j=7 +------------------------------------------------------------------------------------------------------------------------ +l = 1 0.0000 1.0433 -0.3136 -0.2487 -0.1432 0.3953 0.2237 +l = 2 0.9882 0.0000 0.3257 0.2665 0.2353 -0.3701 -0.2017 +l = 3 -0.4514 0.4521 0.0000 0.4490 0.3698 -0.6318 -0.3558 +l = 4 -0.3585 0.3628 0.4451 0.0000 0.4662 0.6659 -0.4493 +l = 5 -0.1758 0.1836 0.2268 0.2875 0.0000 0.3326 1.0000 +l = 6 0.5383 -0.5472 -0.6731 0.7115 0.6007 0.0000 -0.5556 +l = 7 0.1756 -0.1836 -0.2268 -0.2875 1.0000 -0.3326 0.0000 +------------------------------------------------------------------------------------------------------------------------ + + + diff --git a/Working_Examples/83/CH14/EX14.1/example_14_1.sce b/Working_Examples/83/CH14/EX14.1/example_14_1.sce new file mode 100755 index 0000000..e392b99 --- /dev/null +++ b/Working_Examples/83/CH14/EX14.1/example_14_1.sce @@ -0,0 +1,13 @@ +//Chapter 14 +//Example 14.1 +//page 533 +//To estimate the values of the random variables x1 and x2 +clear;clc; + +H=[1 0;0 1;1 1]; //given matrix +k=inv(H'*H)*H'; // from eq 14.9 +y=['y1';'y2';'y3']; +k=string(k); +x=[k(1,1)+y(1,1)+k(1,2)+y(2,1)+"+"+k(1,3)+y(3,1) ;k(2,1)+y(1,1)+"+"+k(2,2)+y(2,1)+"+"+k(2,3)+y(3,1)]; +printf('Estimate of x =\n'); +disp(x);
\ No newline at end of file diff --git a/Working_Examples/83/CH14/EX14.1/result_example_14_1.txt b/Working_Examples/83/CH14/EX14.1/result_example_14_1.txt new file mode 100755 index 0000000..8e301aa --- /dev/null +++ b/Working_Examples/83/CH14/EX14.1/result_example_14_1.txt @@ -0,0 +1,7 @@ + +Estimate of x = + +!0.6666667y1-0.3333333y2+0.3333333y3 ! +! ! +!-0.3333333y1+0.6666667y2+0.3333333y3 ! + diff --git a/Working_Examples/83/CH14/EX14.2/example_14_2.sce b/Working_Examples/83/CH14/EX14.2/example_14_2.sce new file mode 100755 index 0000000..6d7b95d --- /dev/null +++ b/Working_Examples/83/CH14/EX14.2/example_14_2.sce @@ -0,0 +1,30 @@ +//Chapter 14 +//Example 14.2 +//page 534 +//To estimate the values of the random variables x1 and x2 using WLSE +clear;clc; + +w=diag([0.1;1;0.1]); //assumed matrix +H=[1 0;0 1;1 1]; //given matrix +k=inv(H'*w*H)*H'*w; // from eq 14.12b +y=['y1';'y2';'y3']; +Px=k*k'; +k=string(k); +x=[k(1,1)+y(1,1)+k(1,2)+y(2,1)+"+"+k(1,3)+y(3,1) ;k(2,1)+y(1,1)+"+"+k(2,2)+y(2,1)+"+"+k(2,3)+y(3,1)]; +printf('The weighted least square s estimate of the vector x =\n'); +disp(x); +printf('\n\nThe matrix k is in this case found to be \n'); +disp(k); +//covariance of measurement is assumed is assumed to be unit matrix +printf('\n\nThe covariance of the estimation error is obtained as Px=\n'); +disp(Px); + +printf('\n\n\n Now choosing W=1\n'); +w=diag([1;1;1]); //assumed matrix +H=[1 0;0 1;1 1]; //given matrix +k=inv(H'*w*H)*H'*w; // from eq 14.12b +Px=k*k'; +printf('\n\nThe matrix k is in this case found to be \n'); +disp(k); +printf('\n\nThe covariance of the estimation error is obtained as Px=\n'); +disp(Px);
\ No newline at end of file diff --git a/Working_Examples/83/CH14/EX14.2/result_example_14_2.txt b/Working_Examples/83/CH14/EX14.2/result_example_14_2.txt new file mode 100755 index 0000000..71f30e6 --- /dev/null +++ b/Working_Examples/83/CH14/EX14.2/result_example_14_2.txt @@ -0,0 +1,36 @@ + +The weighted least square s estimate of the vector x = + +!0.5238095y1-0.4761905y2+0.4761905y3 ! +! ! +!-0.0476190y1+0.9523810y2+0.0476190y3 ! + + +The matrix k is in this case found to be + +!0.5238095 -0.4761905 0.4761905 ! +! ! +!-0.0476190 0.9523810 0.0476190 ! + + +The covariance of the estimation error is obtained as Px= + + 0.7278912 - 0.4557823 + - 0.4557823 0.9115646 + + + + Now choosing W=1 + + +The matrix k is in this case found to be + + 0.6666667 - 0.3333333 0.3333333 + - 0.3333333 0.6666667 0.3333333 + + +The covariance of the estimation error is obtained as Px= + + 0.6666667 - 0.3333333 + - 0.3333333 0.6666667 + diff --git a/Working_Examples/83/CH14/EX14.3/example_14_3.sce b/Working_Examples/83/CH14/EX14.3/example_14_3.sce new file mode 100755 index 0000000..7b53d0a --- /dev/null +++ b/Working_Examples/83/CH14/EX14.3/example_14_3.sce @@ -0,0 +1,16 @@ +//Chapter 14 +//Example 14.3 +//page 538 +//To estimate the values of the random variables x1 and x2 using WLSE +clear;clc; +i=0; x=1;y=8.5 +printf('---------------------------------------\n'); +printf('iteration\t\tx(l)\n'); +printf('---------------------------------------\n'); +printf('\t%d\t\t%0.3f\n',i,x); +for i=1:1:10 + k=(1/3)*x^-2 //expression for the value of k has been printed wrongly in the textbook + x=x+(k)*(y-x^3); + printf('\t%d\t\t%0.3f\n',i,x); + +end diff --git a/Working_Examples/83/CH14/EX14.3/result_example_14_3.txt b/Working_Examples/83/CH14/EX14.3/result_example_14_3.txt new file mode 100755 index 0000000..2a65a97 --- /dev/null +++ b/Working_Examples/83/CH14/EX14.3/result_example_14_3.txt @@ -0,0 +1,16 @@ + +--------------------------------------- +iteration x(l) +--------------------------------------- + 0 1.000 + 1 3.500 + 2 2.565 + 3 2.141 + 4 2.045 + 5 2.041 + 6 2.041 + 7 2.041 + 8 2.041 + 9 2.041 + 10 2.041 + diff --git a/Working_Examples/83/CH17/EX17.1/example_17_1.sce b/Working_Examples/83/CH17/EX17.1/example_17_1.sce new file mode 100755 index 0000000..1c42e46 --- /dev/null +++ b/Working_Examples/83/CH17/EX17.1/example_17_1.sce @@ -0,0 +1,11 @@ +//Chapter 17 +//Example 17.1 +//page 602 +//To find reactive power sensitivity at the bus +clear;clc; +Q_nom=1; //given +Ksh=0.8; V=1.0; //assumed +Qnet=(V^2-Ksh*V^2)*Q_nom; +//senstivity=dQnet/dV +s=2*V-2*V*Ksh; +printf('Reactive power Sensitivity at the bus is = %0.2f pu',s); diff --git a/Working_Examples/83/CH17/EX17.1/result_example_17_1.txt b/Working_Examples/83/CH17/EX17.1/result_example_17_1.txt new file mode 100755 index 0000000..908ff1e --- /dev/null +++ b/Working_Examples/83/CH17/EX17.1/result_example_17_1.txt @@ -0,0 +1,3 @@ + + +Reactive power Sensitivity at the bus is = 0.40 pu diff --git a/Working_Examples/83/CH17/EX17.2/example_17_2.sce b/Working_Examples/83/CH17/EX17.2/example_17_2.sce new file mode 100755 index 0000000..c216cae --- /dev/null +++ b/Working_Examples/83/CH17/EX17.2/example_17_2.sce @@ -0,0 +1,10 @@ +//Chapter 17 +//Example 17.2 +//page 602 +//To find capacity of static VAR compensator +clear;clc; + +delta_V=5/100; //allowable voltage fluctuation +S_sc=5000; //system short circuit capacity in MVA +delta_Q=delta_V*S_sc; //size of the compensator +printf('The capacity of the static VAR compensator is +%d MVAR',delta_Q);
\ No newline at end of file diff --git a/Working_Examples/83/CH17/EX17.2/result_example_17_2.txt b/Working_Examples/83/CH17/EX17.2/result_example_17_2.txt new file mode 100755 index 0000000..57f0937 --- /dev/null +++ b/Working_Examples/83/CH17/EX17.2/result_example_17_2.txt @@ -0,0 +1,4 @@ + + +The capacity of the static VAR compensator is +250 MVAR + diff --git a/Working_Examples/83/CH2/EX2.1/example_2_1.sce b/Working_Examples/83/CH2/EX2.1/example_2_1.sce new file mode 100755 index 0000000..a05dcb8 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.1/example_2_1.sce @@ -0,0 +1,16 @@ +//Chapter 2 +//Example 2.1 +//page 56 +//To find GMD of the conductor +//From the given the text book,leaving out the factor of "r",we have the seven possible distances +clear;clc; +D1=0.7788*2*2*(2*sqrt(3))*4*(2*sqrt(3))*2; +//since there are 7 identical conductors,the above products remains same dor all D's +D2=D1; +D3=D1; +D4=D1; +D5=D1; +D6=D1; +D7=D1; +Ds=(D1*D2*D3*D4*D5*D6*D7)^(1/(7*7)); +printf("\n GMD of the conductor is %0.4fr",Ds); diff --git a/Working_Examples/83/CH2/EX2.1/result_example_2_1.txt b/Working_Examples/83/CH2/EX2.1/result_example_2_1.txt new file mode 100755 index 0000000..0c9d80c --- /dev/null +++ b/Working_Examples/83/CH2/EX2.1/result_example_2_1.txt @@ -0,0 +1,3 @@ + + + GMD of the conductor is 2.2578r diff --git a/Working_Examples/83/CH2/EX2.2/example_2_2.sce b/Working_Examples/83/CH2/EX2.2/example_2_2.sce new file mode 100755 index 0000000..c8680e6 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.2/example_2_2.sce @@ -0,0 +1,35 @@ +//Chapter 2 +//Example 2.2 +//page 57 +//To find reactance of the conductor +clear;clc; +f=50; //frequency +D=5.04; //diameter of the entire ACSR +d=1.68; //diameter of each conductor +Dsteel=D-2*d; //diameter of steel strand +//As shown in fig +D12=d; +D13=(sqrt(3)*d); +D14=2*d; +D15=D13; +D16=D12; +//neglecting the central sttel conductor,we have the 6 possibilities +D1=(0.7788*d)*D12*D13*D14*D15*D16; +//we have total of 6 conductors,hence +D2=D1; +D3=D1; +D4=D1; +D5=D1; +D6=D1; +Ds=(D1*D2*D3*D4*D5*D6)^(1/(6*6));//GMR; +//since the spacing between lines is 1m=100cm +l=100; +L=0.461*log10(l/Ds); //Inductance of each conductor +Ll=2*L; // loop inductance +Xl=2*%pi*f*Ll*10^(-3);//reactance of the line +printf("\n\nInductance of each conductor=%0.4f mH/km\n\n",L); +printf("Loop Inductance=%0.4f mH/km\n\n",Ll); +printf("Loop Reactance=%f ohms/km\n\n",Xl); + + + diff --git a/Working_Examples/83/CH2/EX2.2/result_example_2_2.txt b/Working_Examples/83/CH2/EX2.2/result_example_2_2.txt new file mode 100755 index 0000000..68706e8 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.2/result_example_2_2.txt @@ -0,0 +1,9 @@ + + + +Inductance of each conductor=0.7667 mH/km + +Loop Inductance=1.5334 mH/km + +Loop Reactance=0.481723 ohms/km + diff --git a/Working_Examples/83/CH2/EX2.3/example_2_3.sce b/Working_Examples/83/CH2/EX2.3/example_2_3.sce new file mode 100755 index 0000000..d3f3e39 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.3/example_2_3.sce @@ -0,0 +1,48 @@ +//Chapter 2 +//Example 2.3 +//page 58 +//To find inductance of each side of the line and that of the complete line +clear;clc; +//to find mutual GMD +D14=sqrt(8*8+2*2); +D15=sqrt(8*8+6*6); +D24=sqrt(8*8+2*2); +D25=sqrt(8*8+2*2); +D34=sqrt(8*8+6*6); +D35=sqrt(8*8+2*2); +//sixth root of six mutual distances +Dm=(D14*D15*D24*D25*D34*D35)^(1/6);//mutual GMD between lines + +//to find GMR of Side A conductors +D11=0.7788*2.5*10^(-3); +D22=D11; +D33=D11; +D12=4; +D21=D12; +D13=8; +D31=8; +D23=4; +D32=D23; +//ninth root nine distances in Side A +Da=(D11*D12*D13*D21*D22*D23*D31*D32*D33)^(1/9); + +//to find GMR of Side A conductors +D44=0.7788*5*10^(-3); +D45=4; +D54=D45; +D55=D44; +//fourth root of four distances in Side B +Db=(D44*D45*D54*D55)^(1/4); + +La=0.461*log10(Dm/Da);//inductance line A +Lb=0.461*log10(Dm/Db);//inductance line B + +L=La+Lb; //loop inductance + +printf("\n\nMutual GMD between lines = %0.4f m\n\n",Dm); +printf("GMR of Side A conductors = %0.4f m\n\n",Da); +printf("GMR of Side B conductors = %0.4f m\n\n",Db); +printf("Inductance of line A = %0.4f mH/km\n\n",La); +printf("Inductance of line B = %0.4f mH/km\n\n",Lb); +printf("Loop Inductance of the lines = %0.4f mH/km\n\n",L); + diff --git a/Working_Examples/83/CH2/EX2.3/result_example_2_3.txt b/Working_Examples/83/CH2/EX2.3/result_example_2_3.txt new file mode 100755 index 0000000..bec7c7d --- /dev/null +++ b/Working_Examples/83/CH2/EX2.3/result_example_2_3.txt @@ -0,0 +1,12 @@ + +Mutual GMD between lines = 8.7937 m + +GMR of Side A conductors = 0.3670 m + +GMR of Side B conductors = 0.1248 m + +Inductance of line A = 0.6359 mH/km + +Inductance of line B = 0.8519 mH/km + +Loop Inductance of the lines = 1.4878 mH/km diff --git a/Working_Examples/83/CH2/EX2.5/example_2_5.sce b/Working_Examples/83/CH2/EX2.5/example_2_5.sce new file mode 100755 index 0000000..dc380bd --- /dev/null +++ b/Working_Examples/83/CH2/EX2.5/example_2_5.sce @@ -0,0 +1,34 @@ +//Chapter 2 +//Example 2.5 +//page 63 +//To find flux linkages with neutral and voltage induced in neutral +//To find voltage drop in each of three-phase wires + +clear;clc; +Ia=-30+%i*50; +Ib=-25+%i*55; +Ic=-(Ia+Ib); + +//(a) to find flux linkages with neutral and voltage induce in it +Dan=4.5; +Dbn=3; //from figure +Dcn=1.5; +Phi_n=2*10^(-7)*(Ia*log(1/Dan)+Ib*log(1/Dbn)+Ic*log(1/Dcn)); +Vn=%i*2*%pi*50*Phi_n*15000; //voltage induced for 15km long TL +Vn=abs(Vn) ; +printf("\nFlux linkages of the neutral wire = %f Wb-T/m\n\n",Phi_n); +printf("Voltage induced in the neutral = %d\n\n",Vn); + +//(b) to find voltage drop in each phase +Phi_a=2*10^(-7)*(Ia*log(1/(0.7788*0.005))+Ib*log(1/1.5)+Ic*log(1/3)); +Phi_b=2*10^(-7)*(Ib*log(1/(0.7788*0.005))+Ia*log(1/1.5)+Ic*log(1/1.5)); +Phi_c=2*10^(-7)*(Ic*log(1/(0.7788*0.005))+Ib*log(1/1.5)+Ia*log(1/3)); + +delta_Va=%i*2*%pi*50*Phi_a*15000; //like we did for neutral voltage +delta_Vb=%i*2*%pi*50*Phi_b*15000; +delta_Vc=%i*2*%pi*50*Phi_c*15000; + +printf("The Voltage drop of phase a(in volts) =");disp(delta_Va); +printf("\n\nThe Voltage drop of phase b(in volts) =");disp(delta_Vb); +printf("\n\nThe Voltage drop of phase c(in volts) =");disp(delta_Vc); + diff --git a/Working_Examples/83/CH2/EX2.5/result_example_2_5.txt b/Working_Examples/83/CH2/EX2.5/result_example_2_5.txt new file mode 100755 index 0000000..1b29086 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.5/result_example_2_5.txt @@ -0,0 +1,15 @@ + +Flux linkages of the neutral wire = 0.000010 Wb-T/m + +Voltage induced in the neutral = 99 + +The Voltage drop of phase a(in volts) = + - 349.1594 - 204.26943i + + +The Voltage drop of phase b(in volts) = + - 308.62198 - 140.28272i + + +The Voltage drop of phase c(in volts) = + 621.85121 + 328.22026i diff --git a/Working_Examples/83/CH2/EX2.6/example_2_6.sce b/Working_Examples/83/CH2/EX2.6/example_2_6.sce new file mode 100755 index 0000000..8ec5b50 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.6/example_2_6.sce @@ -0,0 +1,13 @@ +//Chapter 2 +//Example 2.6 +//page 65 +//To find mutual inductance between power line and telephone line and voltage induced in telephone line + +clear;clc; +D1=sqrt(1.1*1.1+2*2); //from figure 2.14 +D2=sqrt(1.9*1.9+2*2); //from figure 2.14 +Mpt=0.921*log10(D2/D1); //mutual inductance +Vt=abs(%i*2*%pi*50*Mpt*10^(-3)*100);//when 100A is flowing in the power lines + +printf("\n\nMutual inductance between power line and telephone line = %f mH/km\n\n",Mpt); +printf("\n\nVoltage induced in the telephone circuit = %.3f V/km\n\n",Vt);
\ No newline at end of file diff --git a/Working_Examples/83/CH2/EX2.6/result_example_2_6.txt b/Working_Examples/83/CH2/EX2.6/result_example_2_6.txt new file mode 100755 index 0000000..cfce102 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.6/result_example_2_6.txt @@ -0,0 +1,8 @@ + + + +Mutual inductance between power line and telephone line = 0.075774 mH/km + + + +Voltage induced in the telephone circuit = 2.381 V/km diff --git a/Working_Examples/83/CH2/EX2.7/example_2_7.sce b/Working_Examples/83/CH2/EX2.7/example_2_7.sce new file mode 100755 index 0000000..7d7a737 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.7/example_2_7.sce @@ -0,0 +1,43 @@ +//Chapter 2 +//Example 2.7 +//page 69 +//To find inductive reactance of for the three phase bundled conductors +clear;clc; +r=0.01725; //radius of each conductor +//from the figure we can declare the distances +d=7; +s=0.4; +//Mutual GMD between bundles of phases a and b +Dab=(d*(d+s)*(d-s)*d)^(1/4); +//Mutual GMD between bundles of phases b and c +Dbc=Dab ; //by symmetry +//Mutual GMD between bundles of phases c and a +Dca=(2*d*(2*d+s)*(2*d-s)*2*d)^(1/4); +//Equivalent GMD is calculated as +Deq=(Dab*Dbc*Dca)^(1/3); +//self GMD is given by +Ds=(0.7788*1.725*10^(-2)*0.4*0.7788*1.725*10^(-2)*0.4)^(1/4); +//Inductive reactance per phase is given by +Xl=2*%pi*50*10^(-3)*0.461*log10(Deq/Ds); //10^(-3) because per km is asked +printf("\n\nMutual GMD between bundles of phases a and b = %0.3fm\n\n",Dab); +printf("Mutual GMD between bundles of phases b and c = %0.3fm\n\n",Dbc); +printf("Mutual GMD between bundles of phases c and a = %0.3fm\n\n",Dca); +printf("Equivalent GMD = %0.3fm\n\n",Deq); +printf("Self GMD of the bundles = %0.3fm\n\n",Ds); +printf("Inductive reactance per phase = %0.3f ohms/km\n\n",Xl); + +//now let us compute reactance when center to centerr distances are used +Deq1=(d*d*2*d)^(1/3); +Xl1=2*%pi*50*0.461*10^(-3)*log10(Deq1/Ds); +printf("\n When radius of conductors are neglected and only distance between conductors are used, we get below results:\n\n"); +printf("Equivalent mean distance is = %f\n\n",Deq1); +printf("Inductive reactance per phase = %0.3f ohms/km\n\n",Xl1); + +//when bundle of conductors are replaced by an equivalent single conductor +cond_dia=sqrt(2)*1.725*10^(-3); //conductor diameter for same cross-sectional area +Xl2=2*%pi*50*0.461*10^(-3)*log10(Deq1/cond_dia); +printf("\nWhen bundle of conductors are replaced by an equivalent single conductor:\n\n"); +printf("Inductive reactance per phase = %0.3f ohms/km\n\n",Xl2) ; +percentage_increase=((Xl2-Xl1)/Xl1)*100; +printf("This is %0.2f higher than corresponding value for a bundled conductor line.",percentage_increase); + diff --git a/Working_Examples/83/CH2/EX2.7/results_example_2_7.txt b/Working_Examples/83/CH2/EX2.7/results_example_2_7.txt new file mode 100755 index 0000000..ab9b323 --- /dev/null +++ b/Working_Examples/83/CH2/EX2.7/results_example_2_7.txt @@ -0,0 +1,28 @@ + + + +Mutual GMD between bundles of phases a and b = 6.994m + +Mutual GMD between bundles of phases b and c = 6.994m + +Mutual GMD between bundles of phases c and a = 13.997m + +Equivalent GMD = 8.814m + +Self GMD of the bundles = 0.073m + +Inductive reactance per phase = 0.301 ohms/km + + + When radius of conductors are neglected and only distance between conductors are used, we get below results: + +Equivalent mean distance is = 8.819447 + +Inductive reactance per phase = 0.301 ohms/km + + +When bundle of conductors are replaced by an equivalent single conductor: + +Inductive reactance per phase = 0.515 ohms/km + +This is 71.04 higher than corresponding value for a bundled conductor line. diff --git a/Working_Examples/83/CH3/EX3.1/example_3_1.sce b/Working_Examples/83/CH3/EX3.1/example_3_1.sce new file mode 100755 index 0000000..fc0512a --- /dev/null +++ b/Working_Examples/83/CH3/EX3.1/example_3_1.sce @@ -0,0 +1,22 @@ +//Chapter 3 +//Example 3.1 +//page 87 +//To calculate the capacitance to neutral of a single phase line +clear;clc; +r=0.328; //radius of the conductors +D=300; //distance between the conductors +h=750; //height of the conductors + +//calculating capacitance neglecting the presence of ground +//using Eq (3.6) +Cn=(0.0242/(log10(D/r))); +printf("\nCapacitance to neutral /km of the given single phase line neglecting presence of the earth (using Eq 3.6) is = %0.5f uF/km\n\n",Cn); + +//using Eq (3.7) +Cn=(0.0242)/log10((D/(2*r))+((D^2)/(4*r^2)-1)^0.5); +printf("Capacitance to neutral /km of the given single phase line neglecting presence of the earth (using Eq 3.7) is = %0.5f uF/km\n\n",Cn); + +//Consudering the effect of earth and neglecting the non uniformity of the charge +Cn=(0.0242)/log10(D/(r*(1+((D^2)/(4*h^2)))^0.5)); +printf("Capacitance to neutral /km of the given single phase line considering the presence of the earth and neglecting non uniformity of charge distribution (using Eq 3.26b) is = %0.5f uF/km\n\n",Cn); + diff --git a/Working_Examples/83/CH3/EX3.1/result_example_3_1.txt b/Working_Examples/83/CH3/EX3.1/result_example_3_1.txt new file mode 100755 index 0000000..9afdbd2 --- /dev/null +++ b/Working_Examples/83/CH3/EX3.1/result_example_3_1.txt @@ -0,0 +1,10 @@ + + +Capacitance to neutral /km of the given single phase line neglecting presence of the earth (using Eq 3.6) is = 0.00817 uF/km + +Capacitance to neutral /km of the given single phase line neglecting presence of the earth (using Eq 3.7) is = 0.00817 uF/km + +Capacitance to neutral /km of the given single phase line considering the presence of the earth and neglecting non uniformity of charge distribution (using Eq 3.26b) is = 0.00820 uF/km + + + diff --git a/Working_Examples/83/CH3/EX3.2/example_3_2.sce b/Working_Examples/83/CH3/EX3.2/example_3_2.sce new file mode 100755 index 0000000..e312350 --- /dev/null +++ b/Working_Examples/83/CH3/EX3.2/example_3_2.sce @@ -0,0 +1,21 @@ +//Chapter 3 +//Example 3.2 +//page 88 +//To claculate the capacitance to neutral and charging current of a three phase transmission line +clear;clc; +d=350; //distance between adjacent lines +r=1.05/2; //radius of the conductor +v=110e3; //line voltage; +f=50; + +Deq=(d*d*2*d)^(1/3); //GMD or equivalent + +Cn=(0.0242/log10(Deq/r)); + +Xn=1/(2*%pi*f*Cn*10^(-6)); // Cn is in uF hence we add 10^6 while printing + +Ic=(v/sqrt(3))/Xn; + +printf("\nCapacitance to neutral is = %f uF/km\n\n",Cn); +printf("Capacitive rectance of the line is = %f ohm/km to neutral\n\n",Xn); +printf("Charging Current = %0.2f A/km\n\n",Ic);
\ No newline at end of file diff --git a/Working_Examples/83/CH3/EX3.2/result_exapmle_3_2.txt b/Working_Examples/83/CH3/EX3.2/result_exapmle_3_2.txt new file mode 100755 index 0000000..36aad3e --- /dev/null +++ b/Working_Examples/83/CH3/EX3.2/result_exapmle_3_2.txt @@ -0,0 +1,9 @@ + + +Capacitance to neutral is = 0.008276 uF/km + +Capacitive rectance of the line is = 384635.679536 ohm/km to neutral + +Charging Current = 0.17 A/km + + diff --git a/Working_Examples/83/CH3/EX3.3/example_3_3.sce b/Working_Examples/83/CH3/EX3.3/example_3_3.sce new file mode 100755 index 0000000..07e3791 --- /dev/null +++ b/Working_Examples/83/CH3/EX3.3/example_3_3.sce @@ -0,0 +1,31 @@ +//Chapter 3 +//Example 3.3 +//page 88 +//To claculate the capacitance to neutral and charging current of a double circuit three phase transmission line +clear;clc; + +//After deriving the equation for Cn from the textbook and starting calculation from Eq 3.36 onwards + +r=0.865*10^(-2); frequency=50; v=110e3; +h=6; d=8; j=8; //Referring to fig given in the textbook + +i=((j/2)^2+((d-h)/2)^2)^(1/2); +f=(j^2+h^2)^(1/2); +g=(7^2+4^2)^(1/2); + + +Cn=4*%pi*8.85*10^(-12)/(log((((i^2)*(g^2)*j*h)/((r^3)*(f^2*d)))^(1/3))); + +Cn=Cn*1000 ; //Cn is in per m.to convert it to per km,we multiply by 1000 +WCn=2*%pi*frequency*Cn; + +Icp=(v/sqrt(3))*WCn; + +Icc=Icp/2; + +printf("\nTotal capacitance to neutral for two conductors in parallel = %0.6f uF/km \n\n",Cn*10^(6)); +printf("Charging current/phase = %0.3f A/km \n\n",Icp); +printf("Charging current/conductor = %0.4f A/km \n\n",Icc); + + + diff --git a/Working_Examples/83/CH3/EX3.3/result_example_3_3.txt b/Working_Examples/83/CH3/EX3.3/result_example_3_3.txt new file mode 100755 index 0000000..6602fe5 --- /dev/null +++ b/Working_Examples/83/CH3/EX3.3/result_example_3_3.txt @@ -0,0 +1,8 @@ + + +Total capacitance to neutral for two conductors in parallel = 0.018088 uF/km + +Charging current/phase = 0.361 A/km + +Charging current/conductor = 0.1804 A/km + diff --git a/Working_Examples/83/CH4/EX4.1/example_4_1.sce b/Working_Examples/83/CH4/EX4.1/example_4_1.sce new file mode 100755 index 0000000..bc919b4 --- /dev/null +++ b/Working_Examples/83/CH4/EX4.1/example_4_1.sce @@ -0,0 +1,43 @@ +//Chapter 4 +//Example 4.1 +//page 103 +// to draw the per unit reactance diagram +clear;clc; +mvab=30; kvb=33; //MVA base and KVA base are selected + +gen1_mva=30; gen1_kv=10.5; gen1_x=1.6; //Generator No.1 details +gen2_mva=15; gen2_kv=6.6; gen2_x=1.2; //Generator No.2 details +gen3_mva=25; gen3_kv=6.6; gen3_x=0.56; //Generator No.3 details + +t1_mva=15; t1_hv=33; t1_lv=11; t1_x=15.2; //Transformer T1 details +t2_mva=15; t2_hv=33; t2_lv=6.2; t2_x=16; //Transformer T1 details + +tl_x=20.5; //Transmission line recatance + +//Loads are neglected as said in the problem + +tl_pu=(tl_x*mvab)/kvb^2; +t1_pu=(t1_x*mvab)/kvb^2; +t2_pu=(t2_x*mvab)/kvb^2; +gen1_kv_base=t1_lv; +gen1_pu=(gen1_x*mvab)/gen1_kv_base^2; +gen2_kv_base=t2_lv; +gen2_pu=(gen2_x*mvab)/gen2_kv_base^2; +gen3_pu=(gen3_x*mvab)/gen2_kv_base^2; + +//diplaying the results on console + +printf('Per unit impedance of the components of the given power system are as follows :\n\n'); + +printf('Transmission line: %0.3f \n\n',tl_pu); + +printf('Transformer T1: %0.3f \n\n',t1_pu); + +printf('Transformer T2: %0.3f \n\n',t2_pu); + +printf('Generator 1: %0.3f \n\n',gen1_pu); + +printf('Generator 2: %0.3f \n\n',gen2_pu); + +printf('Generator 3: %0.3f \n\n',gen3_pu); + diff --git a/Working_Examples/83/CH4/EX4.1/result_example_4_1.txt b/Working_Examples/83/CH4/EX4.1/result_example_4_1.txt new file mode 100755 index 0000000..975ce31 --- /dev/null +++ b/Working_Examples/83/CH4/EX4.1/result_example_4_1.txt @@ -0,0 +1,18 @@ + +Per unit impedance of the components of the given power system are as follows : + +Transmission line: 0.565 + +Transformer T1: 0.419 + +Transformer T2: 0.441 + +Generator 1: 0.397 + +Generator 2: 0.937 + +Generator 3: 0.437 + + + Execution done. + diff --git a/Working_Examples/83/CH4/EX4.2/example_4_2.sce b/Working_Examples/83/CH4/EX4.2/example_4_2.sce new file mode 100755 index 0000000..31701df --- /dev/null +++ b/Working_Examples/83/CH4/EX4.2/example_4_2.sce @@ -0,0 +1,43 @@ +//Chapter 4 +//Example 4.2 +//page 104 +// To draw the per unit reactance diagram when pu values are specified based on euipment rating +clear;clc; +mvab=30; kvb=11; //MVA base and KVA base are selected in the circuit of generator 1 + +gen1_mva=30; gen1_kv=10.5; gen1_x=0.435; //Generator No.1 details +gen2_mva=15; gen2_kv=6.6; gen2_x=0.413; //Generator No.2 details +gen3_mva=25; gen3_kv=6.6; gen3_x=0.3214; //Generator No.3 details + +t1_mva=15; t1_hv=33; t1_lv=11; t1_x=0.209; //Transformer T1 details +t2_mva=15; t2_hv=33; t2_lv=6.2; t2_x=0.220; //Transformer T1 details + +tl_x=20.5; //Transmission line recatance + +//Loads are neglected as said in the problem + +tl_pu=(tl_x*mvab)/t1_hv^2; +t1_pu=t1_x*(mvab/t1_mva); +t2_pu=t2_x*(mvab/t2_mva); +gen1_pu=gen1_x*(mvab/gen1_mva)*(gen1_kv/kvb)^2; +gen2_kv_base=t2_lv; +gen2_pu=gen2_x*(mvab/gen2_mva)*(gen2_kv/gen2_kv_base)^2; +gen3_kv_base=t2_lv; +gen3_pu=gen3_x*(mvab/gen3_mva)*(gen3_kv/gen3_kv_base)^2; + +//diplaying the results on console + +printf('Per unit impedance of the components of the given power system are as follows :\n\n'); + +printf('Transmission line: %0.3f \n\n',tl_pu); + +printf('Transformer T1: %0.3f \n\n',t1_pu); + +printf('Transformer T2: %0.3f \n\n',t2_pu); + +printf('Generator 1: %0.3f \n\n',gen1_pu); + +printf('Generator 2: %0.3f \n\n',gen2_pu); + +printf('Generator 3: %0.3f \n\n',gen3_pu); + diff --git a/Working_Examples/83/CH4/EX4.2/result_example_4_2.txt b/Working_Examples/83/CH4/EX4.2/result_example_4_2.txt new file mode 100755 index 0000000..30c5370 --- /dev/null +++ b/Working_Examples/83/CH4/EX4.2/result_example_4_2.txt @@ -0,0 +1,32 @@ + +Per unit impedance of the components of the given power system are as follows : + +Transmission line: 0.565 + +Transformer T1: 0.418 + +Transformer T2: 0.440 + +Generator 1: 0.396 + +Generator 2: 0.936 + +Generator 3: 0.437 + +Per unit impedance of the components of the given power system are as follows : + +Transmission line: 0.565 + +Transformer T1: 0.419 + +Transformer T2: 0.441 + +Generator 1: 0.397 + +Generator 2: 0.937 + +Generator 3: 0.437 + + + Execution done. + diff --git a/Working_Examples/83/CH4/EX4.3/example_4_3.sce b/Working_Examples/83/CH4/EX4.3/example_4_3.sce new file mode 100755 index 0000000..9c72377 --- /dev/null +++ b/Working_Examples/83/CH4/EX4.3/example_4_3.sce @@ -0,0 +1,24 @@ +//Taking Base value MVA and KVA +clear;clc; +mvab=645; //Base MVA in 3-phase +kvb=24; //Base KV,line-to-line + +vl=24/kvb; //Load voltage +xs=1.2; +xs=(xs*mvab)/kvb^2; // xs converted to its pu + +//since the generator is operating at full load & 0.9pf +pf_angle=acos(0.9); +Ia=1*(cos(pf_angle)-%i*sin(pf_angle)); //load current +//to find excitation emf +ef=vl+%i*xs*Ia; +delta=atand(imag(ef)/real(ef));//positive for leading +ef=abs(ef)*kvb; //pu to actual unit conversion + if(delta>0) then lead_lag='leading'; + else lead_lag='lagging'; + end +printf('Excitation emf= %0.2f kV at an angle %0.3f (%s) \n\n',ef,delta,lead_lag); +//to find reactive power drawn by load +Q=vl*abs(imag(Ia)); +Q=Q*mvab; //pu to actual unit conversion +printf('Reactive power drawn by laod= %d MVAR',Q); diff --git a/Working_Examples/83/CH4/EX4.3/result_example_4_3.txt b/Working_Examples/83/CH4/EX4.3/result_example_4_3.txt new file mode 100755 index 0000000..17267b8 --- /dev/null +++ b/Working_Examples/83/CH4/EX4.3/result_example_4_3.txt @@ -0,0 +1,5 @@ + +Excitation emf= 47.86 kV at an angle 37.331 (leading) + +Reactive power drawn by laod= 281 MVAR + diff --git a/Working_Examples/83/CH4/EX4.4/example_4_4.sce b/Working_Examples/83/CH4/EX4.4/example_4_4.sce new file mode 100755 index 0000000..064e191 --- /dev/null +++ b/Working_Examples/83/CH4/EX4.4/example_4_4.sce @@ -0,0 +1,50 @@ +//Taking Base value MVA and KVA +clear;clc; +global mvab +mvab=645; //Base MVA in 3-phase +kvb=24; //Base KV,line-to-line +vt=24/kvb; //Terminal voltage +xs=1.2; +xs=(xs*mvab)/kvb^2; // xs converted to its pu + +//since the generator is operating at full load & 0.9pf +pf_angle=acos(0.9); +Ia=1*(cos(pf_angle)-%i*sin(pf_angle)); //load current +//to find excitation emf +ef=vt+%i*xs*Ia; +ef=abs(ef); +P=1*0.9; //at Full load + +/////// writing an inline function ///////////////// +function [pf,lead_lag,Q]=excitation_change(P,ef,vt,xs) +sin_delta=(P*xs)/(ef*vt); +delta=asind(sin_delta); +ef0=ef*(cosd(delta)+(%i*sind(delta))); +Ia=(ef0-vt)/(%i*xs); +Ia_mag=abs(Ia);Ia_ang=atand(imag(Ia)/real(Ia)); // Magnitude and angle of Ia +pf=cosd(abs(Ia_ang)); +if(Ia_ang>0) then lead_lag='leading'; + elseif (Ia_ang==0) then lead_lag='unity pf' + else lead_lag='lagging'; + end +Q=vt*Ia_mag*sind(abs(Ia_ang)); +Q=abs(Q)*mvab; +endfunction +//////////////////////////////////////////////////////// + + +// First Case when Ef is increased by 20% at same real load now + ef1=ef*1.2; +[pf1,lead_lag1,Q1]=excitation_change(P,ef1,vt,xs); +disp("Case (i): When Ef is increased by 20% "); +printf('\n\tPower factor pf= %0.2f %s \n',pf1,lead_lag1); +printf('\tReactive power drawn by the load = %0.1f MVAR \n',Q1); + +//Second Case when Ef is decreased by 20% at same real load now + ef2=ef*0.8; +[pf2,lead_lag2,Q2]=excitation_change(P,ef2,vt,xs); +disp("Case (ii): When Ef is decreased by 20% "); +printf('\n\tPower factor pf= %0.2f %s \n',pf2,lead_lag2); +printf('\tReactive power drawn by the load = %0.1f MVAR \n',Q2); + +disp('The answers given here are exact values.Textbook answers has an approximation of upto 2 decimal places on Xs,Ia,pf. '); diff --git a/Working_Examples/83/CH4/EX4.4/result_example_4_4.txt b/Working_Examples/83/CH4/EX4.4/result_example_4_4.txt new file mode 100755 index 0000000..7e86950 --- /dev/null +++ b/Working_Examples/83/CH4/EX4.4/result_example_4_4.txt @@ -0,0 +1,14 @@ + + + Case (i): When Ef is increased by 20% + + Power factor pf= 0.75 lagging + Reactive power drawn by the load = 511.2 MVAR + + Case (ii): When Ef is decreased by 20% + + Power factor pf= 1.00 lagging + Reactive power drawn by the load = 19.5 MVAR + + The answers given here are exact values.Textbook answers has an approximat + ion of upto 2 decimal places on Xs,Ia,pf. diff --git a/Working_Examples/83/CH5/EX5.1/example_5_1.sce b/Working_Examples/83/CH5/EX5.1/example_5_1.sce new file mode 100755 index 0000000..d64c735 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.1/example_5_1.sce @@ -0,0 +1,43 @@ +//Chapter 5 +//Example 5.1 +//page 132 +//To find sending-end voltage and voltage regulation +clc;clear; + +load1=5000; //kW +pf=0.707; +Vr=10000; //receiving end voltage +R=0.0195*20; +X=2*%pi*50*0.63*10^-3*20; + +//to find sending end voltage and voltage regulation +I=load1*1000/(Vr*pf); +Vs=Vr+I*(R*pf+X*sin(acos(pf))); +voltage_regulation=(Vs-Vr)*100/Vr; +printf('\n\nReceiving current =I=%d A\n',I); +printf('Sending end voltage =Vs=%d V\n',Vs); +printf('Voltage Regulation=%0.2f %%',voltage_regulation); + +//to find the value of the capacitor to be connected in parallel to the load +voltage_regulation_desi=voltage_regulation/2; +Vs=(voltage_regulation_desi/100)*Vr+Vr; +//by solving the equations (i) and (ii) +pf=0.911; +Ir=549; +Ic=(Ir*(pf-%i*sin(acos(pf))))-(707*(0.707-%i*0.707)); +Xc=(Vr/imag(Ic)); +c=(2*%pi*50*Xc)^-1; +printf('\n\nCapacitance to be connected across the load so as to reduce voltage regulation by half of the above voltage regulation is given by :\n C = %d uF\n',c*10^6); + +//to find efficiency in both the cases +//case(i) +losses=I*I*R*10^-3; +n=(load1/(load1+losses))*100; +printf('\n Efficiency in : \nCase(i) \t n=%0.1f%%',n); +//caase(ii) +losses=Ir*Ir*R*10^-3; +n=(load1/(load1+losses))*100; +printf('\nCase(ii) \t n=%0.1f%%',n); + + + diff --git a/Working_Examples/83/CH5/EX5.1/result_example_5_1.txt b/Working_Examples/83/CH5/EX5.1/result_example_5_1.txt new file mode 100755 index 0000000..99064b3 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.1/result_example_5_1.txt @@ -0,0 +1,11 @@ + +Receiving current =I=707 A +Sending end voltage =Vs=12174 V +Voltage Regulation=21.75 % + +Capacitance to be connected across the load so as to reduce voltage regulation by half of the above voltage regulation is given by : + C = 87 uF + + Efficiency in : +Case(i) n=96.2% +Case(ii) n=97.7% diff --git a/Working_Examples/83/CH5/EX5.10/example_5_10.sce b/Working_Examples/83/CH5/EX5.10/example_5_10.sce new file mode 100755 index 0000000..af6af96 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.10/example_5_10.sce @@ -0,0 +1,39 @@ +//Chapter 5 +//Example 5.10 +//page 170 +//To determine the MVA rating of the shunt reactor +clear;clc; +v=275; +l=400; +R=0.035*l; +X=2*%pi*50*1.1*l*10^-3; +Z=R+%i*X; +Y=2*%pi*50*0.012*10^-6*l*%i; +A=1+(Y*Z/2); +B=Z; +Vs=275; +Vr=275; +r=(Vs*Vr)/abs(B); +Ce=abs(A/B)*Vr^2; +printf('Radius of the receiving-end circle=%0.1f MVA\n\n',r); +printf('Location of the center of receiving-end circle= %0.1f MVA\n\n',Ce); +printf('From the graph, 55 MVA shunt reactor is required\n\n'); +theta=180+82.5; +x=-75:0.01:450; +a=Ce*cosd(theta); //to draw the circle +b=Ce*sind(theta); +y=sqrt(r^2-(x-a)^2)+b; +x1=a:0.001:0; +y1=tand(theta)*x1; +plot(x,y,x1,y1); +title('Circle diagram for example 5.10'); +xlabel('MW'); +ylabel('MVAR'); +plot(a,b,'markersize',150); +xgrid(2) +set(gca(),"grid",[0,0]) +get("current_axes"); +xstring (-75,25,'55 MVAR'); +xstring(-75,-25,'83.5 deg'); +xstring(-20,-300,'487.6 MVA'); +xstring(300,-100,'544.3 MVA');
\ No newline at end of file diff --git a/Working_Examples/83/CH5/EX5.10/result_example_5_10.txt b/Working_Examples/83/CH5/EX5.10/result_example_5_10.txt new file mode 100755 index 0000000..abd9fbc --- /dev/null +++ b/Working_Examples/83/CH5/EX5.10/result_example_5_10.txt @@ -0,0 +1,7 @@ + +Radius of the receiving-end circle=544.3 MVA + +Location of the center of receiving-end circle= 487.6 MVA + +From the graph, 55 MVA shunt reactor is required + diff --git a/Working_Examples/83/CH5/EX5.10/result_fig_example_5_10.jpeg b/Working_Examples/83/CH5/EX5.10/result_fig_example_5_10.jpeg Binary files differnew file mode 100755 index 0000000..522057e --- /dev/null +++ b/Working_Examples/83/CH5/EX5.10/result_fig_example_5_10.jpeg diff --git a/Working_Examples/83/CH5/EX5.11/example_5_11.sce b/Working_Examples/83/CH5/EX5.11/example_5_11.sce new file mode 100755 index 0000000..19bd34f --- /dev/null +++ b/Working_Examples/83/CH5/EX5.11/example_5_11.sce @@ -0,0 +1,19 @@ +//Chapter 5 +//Example 5.11 +//page 172 +//To determine sending-end voltage.maximum power delivered +clear;clc; + +A=0.93*(cosd(1.5)+%i*sind(1.5)); +B=115*(cosd(77)+%i*sind(77)); +Vr=275; +Ce=abs(A/B)*Vr^2; +printf('Centre of the receiving end circle is = %0.1f MVA\n\n',Ce); +CrP=850;Vs=CrP*abs(B)/Vr; +printf('(a) From the diagram,\n\tCrP=%d \n \tSending end voltage|Vs|= %0.1f kV\n\n',CrP,Vs); +Vs=295; //given +r=(Vs*Vr)/abs(B); +Pr_m=556; //from the diagram +printf('(b) Radius of the circle diagram = %0.1f MVA\n\t PR_max=%d MW\n\n',r,Pr_m); +Ps=295; //from the diagram; +printf('(c) Additional MVA to be drawn from the line is = P''S=%d MVAR\n\n',Ps);
\ No newline at end of file diff --git a/Working_Examples/83/CH5/EX5.11/result_example_5_11.txt b/Working_Examples/83/CH5/EX5.11/result_example_5_11.txt new file mode 100755 index 0000000..322c788 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.11/result_example_5_11.txt @@ -0,0 +1,12 @@ + + +Centre of the receiving end circle is = 611.6 MVA + +(a) From the diagram, + CrP=850 + Sending end voltage|Vs|= 355.5 kV + +(b) Radius of the circle diagram = 705.4 MVA + PR_max=556 MW + +(c) Additional MVA to be drawn from the line is = P'S=295 MVAR diff --git a/Working_Examples/83/CH5/EX5.2/example_5_2.sce b/Working_Examples/83/CH5/EX5.2/example_5_2.sce new file mode 100755 index 0000000..925e68d --- /dev/null +++ b/Working_Examples/83/CH5/EX5.2/example_5_2.sce @@ -0,0 +1,28 @@ +//Chapter 5 +//Example 5.2 +//page 134 +//To find voltage at the bus at the power station end +clc;clear; + +base_MVA=5; +base_kV=33; +pf=0.85; +cable_impedance=(8+%i*2.5); +cable_impedance=cable_impedance*base_MVA/(base_kV^2); + +transf_imp_star=(0.06+%i*0.36)/3; //equivalent star impedance of winding of the transformer +Zt=(transf_imp_star*5/(6.6^2))+((0.5+%i*3.75)*5/(33^2)); +total=cable_impedance+2*Zt; + +load_MVA=1; +load_voltage=6/6.6; +load_current=1/load_voltage; + +Vs=load_voltage+load_current*(real(total)*pf+imag(total)*sin(acos(pf))); +Vs=Vs*6.6; +printf('\n\nCable impedance= (%0.3f+j%0.4f) pu\n',real(cable_impedance),imag(cable_impedance)); +printf('\nEquivalent star impedance of 6.6kV winding of the transformer =(%0.2f+j%0.2f) pu\n',real(transf_imp_star),imag(transf_imp_star)); +printf('\nPer unit transformer impedance,Zt=(%0.4f+j%0.3f) pu\n',real(Zt),imag(Zt)); +printf('\nTotal series impedance=(%0.3f+j%0.3f) pu\n',real(total),imag(total)); +printf('\nSending end Voltage =|Vs|=%0.2fkV (line-to-line)',Vs); + diff --git a/Working_Examples/83/CH5/EX5.2/result_example_5_2.txt b/Working_Examples/83/CH5/EX5.2/result_example_5_2.txt new file mode 100755 index 0000000..f9b1d06 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.2/result_example_5_2.txt @@ -0,0 +1,10 @@ + +Cable impedance= (0.037+j0.0115) pu + +Equivalent star impedance of 6.6kV winding of the transformer =(0.02+j0.12) pu + +Per unit transformer impedance,Zt=(0.0046+j0.031) pu + +Total series impedance=(0.046+j0.073) pu + +Sending end Voltage =|Vs|=6.56kV (line-to-line) diff --git a/Working_Examples/83/CH5/EX5.3/example_5_3.sce b/Working_Examples/83/CH5/EX5.3/example_5_3.sce new file mode 100755 index 0000000..195c0b5 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.3/example_5_3.sce @@ -0,0 +1,24 @@ +//Chapter 5 +//Example 5.3 +//page 135 +//problem with mixed end condition +clc;clear; +Vr=3000; //receiving end voltage +pfs=0.8; //sending end power factor +Ps=2000*10^3; //sending end active power +z=0.4+%i*0.4; //series impedance +Ss=Ps/pfs; //sending end VA +Qs=Ss*sqrt(1-pfs^2); //sending end reacive power + +//by substituting all the values to the equation (iii) +deff('[y]=fx(I)',"y=(Vr^2)*(I^2)+2*Vr*(I^2)*(real(z)*((Ps-real(z)*(I^2))/Vr)+imag(z)*((Qs-imag(z)*(I^2))/Vr))+(abs(z))^2*(I^4)-(Ss^2)"); +I=fsolve(100,fx); + +pfR=(Ps-real(z)*(I^2))/(Vr*I); //Cos(phi_r) +Pr=Vr*I*pfR; +Vs=(Ps/(I*pfs)); + +printf('\nLoad Current |I|= %0.2f A',I); +printf('\nLoad Pr=%d W',Pr); +printf('\nReceiving end power factor=%0.2f',pfR); +printf('\nSupply Voltage=%0.2fV',Vs); diff --git a/Working_Examples/83/CH5/EX5.3/result_example_5_3.txt b/Working_Examples/83/CH5/EX5.3/result_example_5_3.txt new file mode 100755 index 0000000..537ce19 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.3/result_example_5_3.txt @@ -0,0 +1,6 @@ + +Load Current |I|= 733.14 A +Load Pr=1785001 W +Receiving end power factor=0.81 +Supply Voltage=3409.99V + diff --git a/Working_Examples/83/CH5/EX5.4/example_5_4.sce b/Working_Examples/83/CH5/EX5.4/example_5_4.sce new file mode 100755 index 0000000..7a4015d --- /dev/null +++ b/Working_Examples/83/CH5/EX5.4/example_5_4.sce @@ -0,0 +1,24 @@ +//Chapter 5 +//Example 5.4 +//page 138 +//to find sending end voltage and voltage regulation of a medium transmission line system +clear;clc; +D=300; +r=0.8; +L=0.461*log10(D/(0.7788*r)); +C=0.0242/(log10(D/r)); +R=0.11*250; +X=2*%pi*50*L*0.001*250; +Z=R+%i*X; +Y=%i*2*%pi*50*C*0.000001*250; +Ir=((25*1000)/(132*sqrt(3)))*(cosd(-36.9)+%i*sind(-36.9)); +Vr=(132/sqrt(3)); +A=(1+(Y*Z/2)); +Vs=A*Vr+Z*Ir*10^(-3); +printf('\n\nVs(per phase)=(%0.2f+%0.2f)kV',real(Vs),imag(Vs)); +Vs=abs(Vs)*sqrt(3); +printf('\n\n|Vs|(line)=%d kV',Vs); +Vr0=Vs/abs(A); +printf('\n\n|Vr0|(line no load)=%0.1fkV',Vr0); +Vol_regu=(Vr0-132)/132; +printf('\n\nVoltage Regulation=%0.1f%%\n\n',Vol_regu*100); diff --git a/Working_Examples/83/CH5/EX5.4/result_example_5_4.txt b/Working_Examples/83/CH5/EX5.4/result_example_5_4.txt new file mode 100755 index 0000000..4a47cad --- /dev/null +++ b/Working_Examples/83/CH5/EX5.4/result_example_5_4.txt @@ -0,0 +1,12 @@ + + +Vs(per phase)=(82.26+7.46)kV + +|Vs|(line)=143 kV + +|Vr0|(line no load)=148.4kV + +Voltage Regulation=12.4% + + + diff --git a/Working_Examples/83/CH5/EX5.5/example_5_5.sce b/Working_Examples/83/CH5/EX5.5/example_5_5.sce new file mode 100755 index 0000000..8c62731 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.5/example_5_5.sce @@ -0,0 +1,29 @@ +//Chapter 5 +//Example 5.5 +//page 147 +//to find maximum permissible length and and frequency +clc;clear; +R=0.125*400; +X=0.4*400; +Y=2.8*(10^-6)*400*%i; +Z=R+X*%i; + +//(i) At no-load +A=1+(Y*Z/2); +C=Y*(1+Y*Z/6); +VR_line=220000/abs(A); +Is=abs(C)*VR_line/sqrt(3); +printf('\n\n |VR|line = %d kV',VR_line/1000); +printf('\n |Is| = %d A',Is); + +//(ii) to find maximum permissible length +//By solving the equations shown in the book,we get +l=sqrt((1-0.936)/(0.56*10^(-6))); +printf('\n\n Maximum permissible length of the line = %d km',l); + +//(iii) to find maximum permissible frequency for the case(i) +//By solving the equations shown in the book,we get +f=sqrt(((1-0.88)*50*50)/(0.5*1.12*10^-3*160)); +printf('\n\n Maximum permissible frequency = %0.1f Hz\n\n',f); + + diff --git a/Working_Examples/83/CH5/EX5.5/result_example_5_5.txt b/Working_Examples/83/CH5/EX5.5/result_example_5_5.txt new file mode 100755 index 0000000..d027f9c --- /dev/null +++ b/Working_Examples/83/CH5/EX5.5/result_example_5_5.txt @@ -0,0 +1,11 @@ + + + + |VR|line = 241 kV + |Is| = 151 A + + Maximum permissible length of the line = 338 km + + Maximum permissible frequency = 57.9 Hz + + diff --git a/Working_Examples/83/CH5/EX5.6/example_5_6.sce b/Working_Examples/83/CH5/EX5.6/example_5_6.sce new file mode 100755 index 0000000..21b98e4 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.6/example_5_6.sce @@ -0,0 +1,35 @@ +//Chapter 5 +//Example 5.6 +//page 149 +//to find incident and reflected voltages +clear;clc; + +R=0.125; +X=0.4; +y=%i*2.8*10^(-6); +z=R+%i*X; + +r=sqrt(y*z); //propogation constant +a=real(r); //attenuation constant +b=imag(r); //phase constant + +//(a) At the receiving-end; +Vr=220000; +Inci_vol=Vr/(sqrt(3)*2); +Refl_vol=Vr/(sqrt(3)*2); +printf('\n\nIncident Vvoltage=%0.2f kV',Inci_vol/1000); +printf('\nReflected Vvoltage=%0.2f kV',Refl_vol/1000); + +//(b) At 200km from the receiving-end +x=200; +Inci_vol=Inci_vol*exp(a*x)*exp(%i*b*x); +Refl_vol=Refl_vol*exp(-a*x)*exp(-%i*b*x); +printf('\n\nIncident voltage=%0.2f @ %0.1f deg kV',abs(Inci_vol)/1000,atand(imag(Inci_vol)/real(Inci_vol))); +printf('\nReflected voltage=%0.2f @ %0.1f deg kV',abs(Refl_vol)/1000,atand(imag(Refl_vol)/real(Refl_vol))); + +//(c) Resultant voltage at 200km from the receiving-end +res=Inci_vol+Refl_vol; +printf('\n\nResultant line-to-line voltage at 200km =%0.2f kV',abs(res)*sqrt(3)/1000); + + + diff --git a/Working_Examples/83/CH5/EX5.6/result_example_5_6.txt b/Working_Examples/83/CH5/EX5.6/result_example_5_6.txt new file mode 100755 index 0000000..cd94d77 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.6/result_example_5_6.txt @@ -0,0 +1,10 @@ + + + +Incident Vvoltage=63.51 kV +Reflected Vvoltage=63.51 kV + +Incident voltage=65.62 @ 12.3 deg kV +Reflected voltage=61.47 @ -12.3 deg kV + +Resultant line-to-line voltage at 200km =215.09 kV diff --git a/Working_Examples/83/CH5/EX5.7/example_5_7.sce b/Working_Examples/83/CH5/EX5.7/example_5_7.sce new file mode 100755 index 0000000..dbd47d2 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.7/example_5_7.sce @@ -0,0 +1,83 @@ +//Chapter 5 +//Example 5.7 +//page 138 +//to tabulate characteristics of a system using different methods +clear;clc; + +Z=40+125*%i; +Y=%i*10^(-3); +Ir=((50*10^6)/(220000*0.8*sqrt(3)))*(cosd(-36.9)+%i*sind(-36.9)); +Vr=220000/sqrt(3); + +//(a) Short line approximation +Vs=Vr+Ir*Z; +Vs_line1=Vs*sqrt(3); +Is1=Ir; +pfs1=cos(atan(imag(Vs)/real(Vs))+acos(0.8)); +Ps1=sqrt(3)*abs(Vs_line1)*abs(Is1)*pfs1; + +//(b) Nominal pi method +A=1+Y*Z/2; +D=A; +B=Z; +C=Y*(1+Y*Z/4); +Vs=A*Vr+B*Ir; +Is2=C*Vr+D*Ir; +Vs_line2=sqrt(3)*Vs; +pfs2=cos(atan(imag(Is2)/real(Is2))-atan(imag(Vs)/real(Vs))); +Ps2=sqrt(3)*abs(Vs_line2)*abs(Is2)*pfs2; + +//(c) Exact transmission line equations +rl=sqrt(Z*Y); //propogation constant +Zc=sqrt(Z/Y); //characteristic impedance +A=cosh(rl); +B=Zc*sinh(rl); +C=sinh(rl)/Zc; +D=cosh(rl); +Vs=A*Vr+B*Ir; +Is3=C*Vr+D*Ir; +Vs_line3=sqrt(3)*Vs; +pfs3=cos(atan(imag(Is3)/real(Is3))-atan(imag(Vs)/real(Vs))); +Ps3=sqrt(3)*abs(Vs_line3)*abs(Is3)*pfs3; + +//(d) Approximation +A=(1+Y*Z/2); +B=Z*(1+Y*Z/6); +C=Y*(1+Y*Z/6); +D=A; +Vs=A*Vr+B*Ir; +Is4=C*Vr+D*Ir; +Vs_line4=sqrt(3)*Vs; +pfs4=cos(atan(imag(Is4)/real(Is4))-atan(imag(Vs)/real(Vs))); +Ps4=sqrt(3)*abs(Vs_line4)*abs(Is4)*pfs4; + +//converting all the values to their standard form before writing it to table + +//voltage to kV +Vs_line1=abs(Vs_line1)/1000; +Vs_line2=abs(Vs_line2)/1000; +Vs_line3=abs(Vs_line3)/1000; +Vs_line4=abs(Vs_line4)/1000; + +//Current to kA +Is1=Is1/1000; +Is2=Is2/1000; +Is3=Is3/1000; +Is4=Is4/1000; + +//power to MW5 +Ps1=Ps1/1000000; +Ps2=Ps2/1000000; +Ps3=Ps3/1000000; +Ps4=Ps4/1000000; + +//preparinf table +printf("\n\n_______________________________________________________________________________________________________________________"); +printf('\n \t\tShort line \t\t Nominal Pi \t\t Exact \t\t Approximation'); +printf("\n_______________________________________________________________________________________________________________________"); +printf('\n|Vs|line\t\t%0.2fkV \t\t %0.2fkV\t\t %0.2fkV \t\t %0.2fkV',Vs_line1,Vs_line2,Vs_line3,Vs_line4); +printf('\nIs \t\t%0.3f@%0.1fdeg kA \t\t%0.2f@%0.1fdeg kA\t\t%0.4f@%0.1fdeg kA\t%0.2f@%0.1fdeg kA',abs(Is1),tand(imag(Is1)/real(Is1)),abs(Is2),tand(imag(Is2)/real(Is2)),abs(Is3),tand(imag(Is3)/real(Is3)),abs(Is4),tand(imag(Is4)/real(Is4))); +printf('\npfs \t\t%0.3f lagging \t\t%0.3f leading \t\t%0.3f leading \t\t%0.3f leading',pfs1,pfs2,pfs3,pfs4); +printf('\nPs \t\t%0.2f MW \t\t%0.2f MW \t\t%0.2f MW \t\t%0.2f MW',Ps1,Ps2,Ps3,Ps4); +printf("\n_______________________________________________________________________________________________________________________\n\n\n"); + diff --git a/Working_Examples/83/CH5/EX5.7/result_example_5_7.txt b/Working_Examples/83/CH5/EX5.7/result_example_5_7.txt new file mode 100755 index 0000000..bb57c69 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.7/result_example_5_7.txt @@ -0,0 +1,14 @@ + + + +_______________________________________________________________________________________________________________________ + Short line Nominal Pi Exact Approximation +_______________________________________________________________________________________________________________________ +|Vs|line 251.34kV 238.08kV 237.40kV 237.28kV +Is 0.164@-0.0deg kA 0.13@0.0deg kA 0.1289@0.0deg kA 0.13@0.0deg kA +pfs 0.746 lagging 0.988 leading 0.987 leading 0.987 leading +Ps 53.23 MW 52.19 MW 52.28 MW 52.24 MW +_______________________________________________________________________________________________________________________ + + + diff --git a/Working_Examples/83/CH5/EX5.8/example_5_8.sce b/Working_Examples/83/CH5/EX5.8/example_5_8.sce new file mode 100755 index 0000000..6479e6a --- /dev/null +++ b/Working_Examples/83/CH5/EX5.8/example_5_8.sce @@ -0,0 +1,56 @@ +//Chapter 5 +//Example 5.8 +//page 162 +//to estimate the torque angle and station powerfactor +clear;clc; +Sd1=15+%i*5; +Sd2=25+%i*15; +//case(a) cable impedance=j0.05pu +r=0; +x=%i*0.05; +PG1=20; +PG2=20; +Ps=5;Pr=5; +V1=1; +V2=1; +d1=asind(Ps*abs(x)/(V1*V2)); //delta1 +V1=V1*(cosd(d1)+%i*sind(d1)); +Qs=((abs(V1)^2)/abs(x))-((abs(V1)*abs(V2))*cosd(d1)/(abs(x))); +Qr=(((abs(V1)*abs(V2))*cosd(d1)/(abs(x)))-(abs(V1)^2)/abs(x)); +Ql=Qs-Qr; +Ss=Ps+%i*Qs; +Sr=Pr+%i*Qr; +Sg1=Sd1+Ss; +Sg2=Sd2-Sr; +pf1=cos(atan(imag(Sg1)/real(Sg1))); +pf2=cos(atan(imag(Sg2)/real(Sg2))); +printf('\n\nCase(a)\nTotal load on station1=%d+j%0.3f pu',real(Sg1),imag(Sg1)); +printf('\nPower factor of station1=%0.3f pu lagging',pf1); +printf('\n\Total load on station2=%d+j%0.3f pu',real(Sg2),imag(Sg2)); +printf('\nPower factor of station2=%0.3f pu lagging',pf2); +//case(b) cable impedance=0.005+j0.05; +r=0.005; +PG1=20; +V1=1;V2=1; +Ps=5; +//from the eq(i) in the textbook,we can calculate d1 +z=r+x; +theta=atand(imag(z)/real(z)); +z=abs(z); +d1=acosd(z*(V1^2*cosd(theta)/z-Ps)/(V1*V2))-theta; +Qs=(V1^2*sind(theta)/z)-(V1*V2*sind(theta+d1)/z); +Qg1=5+Qs; +Pr=(V1*V2*cosd(theta-d1)/z)-(V1^2*cosd(theta)/z); +Pg2=25-Pr; +Qr=(V1*V2*sind(theta-d1)/z)-(V1^2*sind(theta)/z); +Qg2=15-Qr; +Ss=Ps+%i*Qs; +Sr=Pr+%i*Qr; +Sg1=Sd1+Ss; +Sg2=Sd2-Sr; +pf1=cos(atan(imag(Sg1)/real(Sg1))); +pf2=cos(atan(imag(Sg2)/real(Sg2))); +printf('\n\nCase(b)\nTotal load on station1=%d+j%0.3f pu',real(Sg1),imag(Sg1)); +printf('\nPower factor of station1=%0.3f pu lagging',pf1); +printf('\n\Total load on station2=%d+j%0.3f pu',real(Sg2),imag(Sg2)); +printf('\nPower factor of station2=%0.3f pu lagging\n\n',pf2); diff --git a/Working_Examples/83/CH5/EX5.8/result_example_5_8.txt b/Working_Examples/83/CH5/EX5.8/result_example_5_8.txt new file mode 100755 index 0000000..b7f4dee --- /dev/null +++ b/Working_Examples/83/CH5/EX5.8/result_example_5_8.txt @@ -0,0 +1,15 @@ + + +Case(a) +Total load on station1=20+j5.635 pu +Power factor of station1=0.963 pu lagging +Total load on station2=20+j15.635 pu +Power factor of station2=0.788 pu lagging + +Case(b) +Total load on station1=20+j5.132 pu +Power factor of station1=0.969 pu lagging +Total load on station2=20+j16.119 pu +Power factor of station2=0.781 pu lagging + + diff --git a/Working_Examples/83/CH5/EX5.9/example_5_9.sce b/Working_Examples/83/CH5/EX5.9/example_5_9.sce new file mode 100755 index 0000000..7ca7bf2 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.9/example_5_9.sce @@ -0,0 +1,33 @@ +//Chapter 5 +//Example 5.9 +//page 165 +//to determine power,voltage,compensating equipment rating +clear;clc; +A=0.85; +B=200; + +//case(a) +Vs=275000; +Vr=275000; +a=5;b=75; //alpha and beta +Qr=0; +//from equation 5.62 +d=b-asind((B/(Vs*Vr))*(Qr+(A*Vr^2*sind(b-a)/B))); //delta +Pr=(Vs*Vr*cosd(b-d)/B)-(A*Vr^2*cosd(b-a)/B); +printf('\n\ncase(a)\nPower at unity powerfactor that can be received =%0.1f MW',Pr/10^6); + +//case(b) +Pr=150*10^6; +d=b-acosd((B/(Vs*Vr))*(Pr+(A*Vr^2*cosd(b-a)/B))); //delta +Qr=(Vs*Vr*sind(b-d)/B)-(A*Vr^2*sind(b-a)/B); +Qc=-Qr; +printf('\n\ncase(b)\nRating of the compensating equipment = %0.2f MVAR',Qc/10^6); +printf('\ni.e the compensating equipment must feed positive VARs into the line'); + + +//case(c) +Pr=150*10^6; +Vs=275000; +//by solving the two conditions given as (i) and (ii), we get +Vr=244.9*10^3; +printf('\n\ncase(c)\nReceiving end voltage = %0.1f kV',Vr/1000); diff --git a/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt b/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt new file mode 100755 index 0000000..18b9c60 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt @@ -0,0 +1,11 @@ + + +case(a) +Power at unity powerfactor that can be received =117.6 MW + +case(b) +Rating of the compensating equipment = 27.40 MVAR +i.e the compensating equipment must feed positive VARs into the line + +case(c) +Receiving end voltage = 244.9 kV diff --git a/Working_Examples/83/CH6/EX6.1/example_6_1.sce b/Working_Examples/83/CH6/EX6.1/example_6_1.sce new file mode 100755 index 0000000..cb0ae70 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.1/example_6_1.sce @@ -0,0 +1,40 @@ +//Chapter 6 +//Example 6.1 +//page 195 +//To Ybus using singular transformation + +clear;clc; +printf('Let us solve this problem by giving values given in the table 6.1 instead of keeping it in variables'); + +y10=1;y20=1;y30=1;y40=1; +y34=2-%i*6;y23=0.666-%i*2; +y12=2-%i*6;y24=1-%i*3; +y13=1-%i*3; + +Y=[y10 0 0 0 0 0 0 0 0; + 0 y20 0 0 0 0 0 0 0; + 0 0 y30 0 0 0 0 0 0; + 0 0 0 y40 0 0 0 0 0; + 0 0 0 0 y34 0 0 0 0; + 0 0 0 0 0 y23 0 0 0; + 0 0 0 0 0 0 y12 0 0; + 0 0 0 0 0 0 0 y24 0; + 0 0 0 0 0 0 0 0 y13]; +A=[1 0 0 0; + 0 1 0 0; + 0 0 1 0; + 0 0 0 1; + 0 0 1 -1; + 0 -1 1 0; + 1 -1 0 0; + 0 -1 0 1; + -1 0 1 0]; +printf('\n\n Ybus matrix using singular transformation for the system of fig.6.2 is \n Ybus= '); +Y=A'*Y*A; +disp(Y); +// for verification let us calculate as given in the text book +printf('\n\n For verification,calculating Ybus substituting as given in the text book\n Ybus(verifiaction)='); +Yveri=[(y10+y12+y13) -y12 -y13 0;-y12 (y20+y12+y23+y24) -y23 -y24;-y13 -y23 (y30+y13+y23+y34) -y34;0 -y24 -y34 (y40+y24+y34)]; +disp(Yveri); + + diff --git a/Working_Examples/83/CH6/EX6.1/result_example_6_1.txt b/Working_Examples/83/CH6/EX6.1/result_example_6_1.txt new file mode 100755 index 0000000..a96fc56 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.1/result_example_6_1.txt @@ -0,0 +1,20 @@ + +-->exec('/home/samyak/scilab_working_directory/chapter_6/ex_1/example_6_1.sce', -1) +Let us solve this problem by giving values given in the table 6.1 instead of keeping it in variables + + Ybus matrix using singular transformation for the system of fig.6.2 is + Ybus= + 4. - 9.i - 2. + 6.i - 1. + 3.i 0 + - 2. + 6.i 4.666 - 11.i - 0.666 + 2.i - 1. + 3.i + - 1. + 3.i - 0.666 + 2.i 4.666 - 11.i - 2. + 6.i + 0 - 1. + 3.i - 2. + 6.i 4. - 9.i + + + For verification,calculating Ybus substituting as given in the text book + Ybus(verifiaction)= + 4. - 9.i - 2. + 6.i - 1. + 3.i 0 + - 2. + 6.i 4.666 - 11.i - 0.666 + 2.i - 1. + 3.i + - 1. + 3.i - 0.666 + 2.i 4.666 - 11.i - 2. + 6.i + 0 - 1. + 3.i - 2. + 6.i 4. - 9.i + +-->diary(0); diff --git a/Working_Examples/83/CH6/EX6.2/example_6_2.sce b/Working_Examples/83/CH6/EX6.2/example_6_2.sce new file mode 100755 index 0000000..208ebc4 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.2/example_6_2.sce @@ -0,0 +1,33 @@ +//Chapter 6 +//Example 6.2 +//page 195 +//To Ybus of sample system +clear;clc; + +y10=1;y20=1;y30=1;y40=1; +y34=2-%i*6;y23=0.666-%i*2; +y12=2-%i*6;y24=1-%i*3; +y13=1-%i*3; + +//to form Ybus matrix +Y11=y13;Y12=0;Y13=-y13;Y14=0; +Y21=0;Y22=y23+y24;Y23=-y23;Y24=-y24; +Y31=-y13;Y32=-y23;Y33=y13+y23+y34;Y34=-y34; +Y41=0;Y42=-y24;Y43=-y34;Y44=y34+y24; + +//case(i) line shown dotted is not connected +Ybus=[Y11 Y12 Y13 Y14; + Y21 Y22 Y23 Y24; + Y31 Y32 Y33 Y34; + Y41 Y42 Y43 Y44]; +printf('(i)Assuming that the line shown is not connected \n Ybus= ');disp(Ybus); +//case(ii) line shown dotted is connected +Y12=Y12-y12;Y21=Y12; +Y11=Y11+y12; +Y22=Y22+y12; + +Ybus=[Y11 Y12 Y13 Y14; + Y21 Y22 Y23 Y24; + Y31 Y32 Y33 Y34; + Y41 Y42 Y43 Y44]; +printf('\n\n(ii)Assuming that the line shown is connected \n Ybus= ');disp(Ybus);
\ No newline at end of file diff --git a/Working_Examples/83/CH6/EX6.2/result_example_6_2.txt b/Working_Examples/83/CH6/EX6.2/result_example_6_2.txt new file mode 100755 index 0000000..3e4396f --- /dev/null +++ b/Working_Examples/83/CH6/EX6.2/result_example_6_2.txt @@ -0,0 +1,18 @@ + +-->exec('/home/samyak/scilab_working_directory/chapter_6/ex_2/example_6_2.sce', -1) +(i)Assuming that the line shown is not connected + Ybus= + 1. - 3.i 0 - 1. + 3.i 0 + 0 1.666 - 5.i - 0.666 + 2.i - 1. + 3.i + - 1. + 3.i - 0.666 + 2.i 3.666 - 11.i - 2. + 6.i + 0 - 1. + 3.i - 2. + 6.i 3. - 9.i + + +(ii)Assuming that the line shown is connected + Ybus= + 3. - 9.i - 2. + 6.i - 1. + 3.i 0 + - 2. + 6.i 3.666 - 11.i - 0.666 + 2.i - 1. + 3.i + - 1. + 3.i - 0.666 + 2.i 3.666 - 11.i - 2. + 6.i + 0 - 1. + 3.i - 2. + 6.i 3. - 9.i + +-->diary(0); diff --git a/Working_Examples/83/CH6/EX6.3/example_6_3.sce b/Working_Examples/83/CH6/EX6.3/example_6_3.sce new file mode 100755 index 0000000..a0d85a1 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.3/example_6_3.sce @@ -0,0 +1,64 @@ +//Chapter 6 +//Example 6.3 +//page 201 +//To find an approximate load flow solution +clear;clc; + +///////////////////////////////////////////////////////////////////////////////// +//Realdemand Reactive demand Real generation Reactive generation Bus +///////////////////////////////////////////////////////////////////////////////// + Pd1=1; Qd1=0.5; Pg1=0; Qg1=0;//initialization 1 + Pd2=1; Qd2=0.4; Pg2=4; Qg2=0;//initialization 2 + Pd3=2; Qd3=1; Pg3=0; Qg3=0;//initialization 3 + Pd4=2; Qd4=1; Pg4=0; Qg4=0;//initialization 4 + +Pg1=Pd1+Pd2+Pd3+Pd4-Pg2; + +//Ybus matrix from the network +Ybus=[-21.667*%i 5*%i 6.667*%i 10*%i; + 5*%i -21.667*%i 10*%i 6.667*%i; + 6.667*%i 10*%i -16.667*%i 0; + 10*%i 6.667*%i 0 -16.667*%i]; +printf('Ybus matrix of the system is given by \nYbus=');disp(Ybus); +//as given in the text book using approximate load flow equations and simplifying (ii),(iii),(iv) +//delta matrix(x) is of the from A*x=B +A=[-5 21.667 -10 -6.667; + -6.667 -10 16.667 0; + -10 -6.667 0 16.667 + 1 0 0 0]; + +B=[3; -2; -2;0]; + +delta=inv(A)*B; //solving for delta +printf('\nDelta of the system is given by \ndelta(rad)=');disp(delta); + +Q1=-5*cos(delta(2,1))-6.667*cos(delta(3,1))-10*cos(delta(4,1))+21.667; +Q2=-5*cos(delta(2,1))-10*cos(delta(3,1)-delta(2,1))-6.667*cos(delta(4,1)-delta(2,1))+21.667; +Q3=-6.667*cos(delta(3,1))-10*cos(delta(3,1)-delta(2,1))+16.667; +Q4=-10*cos(delta(4,1))-6.667*cos(delta(4,1)-delta(2,1))+16.667; + +Q=[Q1;Q2;Q3;Q4]; +printf('\nInjected reactive power at the buses is given by \nQi(in pu)=');disp(Q); + +Qg1=Q1+Qd1; +Qg2=Q2+Qd2; +Qg3=Q3+Qd3; +Qg4=Q4+Qd4; + +Qg=[Qg1;Qg2;Qg3;Qg4]; +printf('\n Reactive power generation at the four buses are \nQgi(in pu)=');disp(Qg); +Qd=[Qd1;Qd2;Qd3;Qd4]; +Ql=sum(Qg)-sum(Qd); +printf('\nReactive power losses are QL=%0.5f pu',Ql); + +printf('\n\nLine Flows are given as:\n'); +P13=(abs(Ybus(1,3)))*sin(delta(1,1)-delta(3,1));P31=-P13;printf('\nP13=-P31=%0.3f pu',P13); +P12=(abs(Ybus(1,2)))*sin(delta(1,1)-delta(2,1));P21=-P12;printf('\nP12=-P21=%0.3f pu',P12); +P14=(abs(Ybus(1,4)))*sin(delta(1,1)-delta(4,1));P41=-P14;printf('\nP14=-P41=%0.3f pu',P14); + +Q13=abs(Ybus(1,3))-(abs(Ybus(1,3)))*cos(delta(1,1)-delta(3,1));Q31=-Q13;printf('\n\nQ13=-Q31=%0.3f pu',Q13); +Q12=abs(Ybus(1,2))-(abs(Ybus(1,2)))*cos(delta(1,1)-delta(2,1));Q21=-Q12;printf('\nQ12=-Q21=%0.3f pu',Q12); +Q14=abs(Ybus(1,4))-(abs(Ybus(1,4)))*cos(delta(1,1)-delta(4,1));Q41=-Q14;printf('\nQ14=-Q41=%0.3f pu',Q14); + + +
\ No newline at end of file diff --git a/Working_Examples/83/CH6/EX6.3/result_example_6_3.txt b/Working_Examples/83/CH6/EX6.3/result_example_6_3.txt new file mode 100755 index 0000000..ec1cc10 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.3/result_example_6_3.txt @@ -0,0 +1,42 @@ + +-->exec('/home/samyak/scilab_working_directory/chapter_6/ex_3/example_6_3.sce', -1) +Ybus matrix of the system is given by +Ybus= + - 21.667i 5.i 6.667i 10.i + 5.i - 21.667i 10.i 6.667i + 6.667i 10.i - 16.667i 0 + 10.i 6.667i 0 - 16.667i + +Delta of the system is given by +delta(rad)= + 0. + 0.0769217 + - 0.0738455 + - 0.0892280 + +Injected reactive power at the buses is given by +Qi(in pu)= + 0.0727367 + 0.2200358 + 0.1316085 + 0.1315939 + + Reactive power generation at the four buses are +Qgi(in pu)= + 0.5727367 + 0.6200358 + 1.1316085 + 1.1315939 + +Reactive power losses are QL=0.55597 pu + +Line Flows are given as: + +P13=-P31=0.492 pu +P12=-P21=-0.384 pu +P14=-P41=0.891 pu + +Q13=-Q31=0.018 pu +Q12=-Q21=0.015 pu +Q14=-Q41=0.040 pu +-->diary(0); diff --git a/Working_Examples/83/CH6/EX6.4/example_6_4.sce b/Working_Examples/83/CH6/EX6.4/example_6_4.sce new file mode 100755 index 0000000..49b5188 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.4/example_6_4.sce @@ -0,0 +1,31 @@ +//Chapter 6 +//Example 6.4 +//page 209 +//To find bus voltages using GS iterations +clear;clc; + +//Ybus matrix from the network +Ybus=[3-9*%i -2+6*%i -1+3*%i 0; + -2+6*%i 3.666-11*%i -0.666+2*%i -1+3*%i + -1+3*%i -0.666+2*%i 3.666-11*%i -2+6*%i + 0 -1+3*%i -2+6*%i 3-9*%i] + +////////////////////////////////////////////////////// +//Pi Qi Vi Remarks Bus no// +P1=0; Q1=0; V1=1.04; //Slack bus 1 +P2=0.5; Q2=-0.2; V2=1; //PQbus 2 +P3=-1.0; Q3=0.5; V3=1; //PQbus 3 +P4=0.3; Q4=-0.1; V4=1; //PQbus 4 +///////////////////////////////////////////////////// + +n=1; +for i=1:n + V2=(1/Ybus(2,2))*(((P2-%i*Q2)/conj(V2))-Ybus(2,1)*V1-Ybus(2,3)*V3-Ybus(2,4)*V4); + V3=(1/Ybus(3,3))*(((P3-%i*Q3)/conj(V3))-Ybus(3,1)*V1-Ybus(3,2)*V2-Ybus(3,4)*V4); + V4=(1/Ybus(4,4))*(((P4-%i*Q4)/conj(V4))-Ybus(4,1)*V1-Ybus(4,2)*V2-Ybus(4,3)*V3); +end + +printf('\nAt the end of iteration %d the voltages at the buses are:\n\nV1=',n);disp(V1);printf('pu'); +printf('\n\n\nV2=');disp(V2);printf('pu'); +printf('\n\n\nV3=');disp(V3);printf('pu'); +printf('\n\n\nV4=');disp(V4);printf('pu'); diff --git a/Working_Examples/83/CH6/EX6.4/result_example_6_4.txt b/Working_Examples/83/CH6/EX6.4/result_example_6_4.txt new file mode 100755 index 0000000..4198a53 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.4/result_example_6_4.txt @@ -0,0 +1,21 @@ + +At the end of iteration 1 the voltages at the buses are: + +V1= + 1.04 +pu + + +V2= + 1.0190887 + 0.0463655i +pu + + +V3= + 1.0280236 - 0.0870264i +pu + + +V4= + 1.0250453 - 0.0092291i +pu diff --git a/Working_Examples/83/CH6/EX6.5/example_6_5.sce b/Working_Examples/83/CH6/EX6.5/example_6_5.sce new file mode 100755 index 0000000..8e7eb91 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.5/example_6_5.sce @@ -0,0 +1,86 @@ +//Chapter 6 +//Example 6.5 +//page 210 +//To find bus voltages and Reactive power injected using GS iterations +clear;clc; + +//Ybus matrix from the network +Ybus=[3-9*%i -2+6*%i -1+3*%i 0; + -2+6*%i 3.666-11*%i -0.666+2*%i -1+3*%i + -1+3*%i -0.666+2*%i 3.666-11*%i -2+6*%i + 0 -1+3*%i -2+6*%i 3-9*%i] + +//Case(i) + +////////////////////////////////////////////////////// +//Pi Qi Vi Remarks Bus no// +P1=0; Q1=0; V1=1.04; //Slack bus 1 +P2=0.5; Q2=0.2; V2=1.04; //PVbus 2 +P3=-1.0; Q3=0.5; V3=1; //PQbus 3 +P4=0.3; Q4=-0.1; V4=1; //PQbus 4 +///////////////////////////////////////////////////// +printf('\nCase(i) When 0.2<Q2<1 pu and running for 1 iteration,we get \n\n'); +Q2min=0.2;Q2max=1; +n=1; + +for i=1:n + if Q2<Q2min then + Q2=Q2min; + V2=(1/Ybus(2,2))*(((P2-%i*Q2)/conj(V2))-Ybus(2,1)*V1-Ybus(2,3)*V3-Ybus(2,4)*V4); + elseif Q2>Q2max then + Q2=Q2max; + V2=(1/Ybus(2,2))*(((P2-%i*Q2)/conj(V2))-Ybus(2,1)*V1-Ybus(2,3)*V3-Ybus(2,4)*V4); + else + Q2=-imag(conj(V2)*Ybus(2,1)*V1+conj(V2)*(Ybus(2,2)*V2+Ybus(2,3)*V3+Ybus(2,4)*V4)); + [mag,delta2]=polar((1/Ybus(2,2))*(((P2-%i*Q2)/(conj(V2)))-Ybus(2,1)*V1-Ybus(2,3)*V3-Ybus(2,4)*V4)); + V2=abs(V2)*(cos(delta2)+%i*sin(delta2)); + end + V3=(1/Ybus(3,3))*(((P3-%i*Q3)/conj(V3))-Ybus(3,1)*V1-Ybus(3,2)*V2-Ybus(3,4)*V4); + V4=(1/Ybus(4,4))*(((P4-%i*Q4)/conj(V4))-Ybus(4,1)*V1-Ybus(4,2)*V2-Ybus(4,3)*V3); +end + +printf('Q2=');disp(Q2);printf('pu'); +printf('\n\n\ndelta2=');disp(abs(delta2));printf('rad'); +printf('\n\n\nV1=');disp(V1);printf('pu'); +printf('\n\n\nV2=');disp(V2);printf('pu'); +printf('\n\n\nV3=');disp(V3);printf('pu'); +printf('\n\n\nV4=');disp(V4);printf('pu'); + + +// case(ii) + +printf('\n\n\nCase(ii) When 0.25<Q2<1 pu and running for 1 iteration,we get \n\n'); + +////////////////////////////////////////////////////// +//Pi Qi Vi Remarks Bus no// +P1=0; Q1=0; V1=1.04; //Slack bus 1 +P2=0.5; V2=1.04; //PVbus 2 +P3=-1.0; Q3=0.5; V3=1; //PQbus 3 +P4=0.3; Q4=-0.1; V4=1; //PQbus 4 +///////////////////////////////////////////////////// + +Q2min=0.25;Q2max=1; +n=1; + +for i=1:n + if Q2<Q2min then + Q2=Q2min; + V2=(1/Ybus(2,2))*(((P2-%i*Q2)/conj(V2))-Ybus(2,1)*V1-Ybus(2,3)*V3-Ybus(2,4)*V4); + elseif Q2>Q2max then + Q2=Q2max; + V2=(1/Ybus(2,2))*(((P2-%i*Q2)/conj(V2))-Ybus(2,1)*V1-Ybus(2,3)*V3-Ybus(2,4)*V4); + else + Q2=-imag(conj(V2)*Ybus(2,1)*V1+conj(V2)*(Ybus(2,2)*V2+Ybus(2,3)*V3+Ybus(2,4)*V4)); + [mag,delta2]=polar((1/Ybus(2,2))*(((P2-%i*Q2)/(conj(V2)))-Ybus(2,1)*V1-Ybus(2,3)*V3-Ybus(2,4)*V4)); + V2=abs(V2)*(cos(delta2)+%i*sin(delta2)); + end + V3=(1/Ybus(3,3))*(((P3-%i*Q3)/conj(V3))-Ybus(3,1)*V1-Ybus(3,2)*V2-Ybus(3,4)*V4); + V4=(1/Ybus(4,4))*(((P4-%i*Q4)/conj(V4))-Ybus(4,1)*V1-Ybus(4,2)*V2-Ybus(4,3)*V3); +end + +printf('Q2=');disp(Q2);printf('pu'); +printf('\n\n\nV1=');disp(V1);printf('pu'); +printf('\n\n\nV2=');disp(V2);printf('pu'); +printf('\n\n\nV3=');disp(V3);printf('pu'); +printf('\n\n\nV4=');disp(V4);printf('pu'); + diff --git a/Working_Examples/83/CH6/EX6.5/result_example_6_5.txt b/Working_Examples/83/CH6/EX6.5/result_example_6_5.txt new file mode 100755 index 0000000..b52c393 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.5/result_example_6_5.txt @@ -0,0 +1,60 @@ + + + +Case(i) When 0.2<Q2<1 pu and running for 1 iteration,we get + +Q2= + 0.208 +pu + + +delta2= + 0.0322201 +rad + + +V1= + 1.04 +pu + + +V2= + 1.0394602 + 0.0335032i +pu + + +V3= + 1.0317266 - 0.0893657i +pu + + +V4= + 1.0343045 - 0.0150761i +pu + + +Case(ii) When 0.25<Q2<1 pu and running for 1 iteration,we get + +Q2= + 0.25 +pu + + +V1= + 1.04 +pu + + +V2= + 1.0545971 + 0.0327833i +pu + + +V3= + 1.0344785 - 0.0894973i +pu + + +V4= + 1.0411847 - 0.0154037i +pu diff --git a/Working_Examples/83/CH6/EX6.6/example_6_6.sce b/Working_Examples/83/CH6/EX6.6/example_6_6.sce new file mode 100755 index 0000000..0058084 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.6/example_6_6.sce @@ -0,0 +1,114 @@ +//Chapter 6 +//Example 6.6 +//page 218 +//To find load flow solution using the NR method +clear;clc; + +///////////////////////////////////////////////////////////////////////// +//Pd Qd Pg Qg V Bus Type///// +///////////////////////////////////////////////////////////////////////// +Pd1=2.0; Qd1=1.0; Pg1=0; Qg1=0; V1=1.04; //1 slack bus +Pd2=0; Qd2=0; Pg2=0.5; Qg2=1; V2=1; //2 PQ bus +Pd3=1.5; Qd3=0.6; Pg3=0.0; Qg3=0; V3=1.04; //3 PV bus +///////////////////////////////////////////////////////////////////////// +[V1_mag,V1_ang]=polar(V1); +[V2_mag,V2_ang]=polar(V2); +[V3_mag,V3_ang]=polar(V3); +y_series=1/(0.02+%i*0.08); +y_self=2*y_series; +y_off=-1*y_series; +Ybus=[y_self y_off y_off;y_off y_self y_off;y_off y_off y_self]; + +[y_bus_mag_21,y_bus_ang_21]=polar(Ybus(2,1)); +[y_bus_mag_22,y_bus_ang_22]=polar(Ybus(2,2)); +[y_bus_mag_23,y_bus_ang_23]=polar(Ybus(2,3)); +[y_bus_mag_31,y_bus_ang_31]=polar(Ybus(3,1)); +[y_bus_mag_32,y_bus_ang_32]=polar(Ybus(3,2)); +[y_bus_mag_33,y_bus_ang_33]=polar(Ybus(3,3)); +[y_bus_mag_11,y_bus_ang_11]=polar(Ybus(1,1)); + +//direct computer solution has been found as below by running for 3 iterations + +n=3; +for i=1:n +//from eq.6.27 and 6.28 +P2=V2_mag*V1_mag*y_bus_mag_21*cos(y_bus_ang_21+V1_ang-V2_ang)+(V2_mag^2)*y_bus_mag_22*cos(y_bus_ang_22)+V2_mag*V3_mag*y_bus_mag_23*cos(y_bus_ang_23+V3_ang-V2_ang); + +P3=V3_mag*V1_mag*y_bus_mag_31*cos(y_bus_ang_31+V1_ang-V3_ang)+(V3_mag^2)*y_bus_mag_33*cos(y_bus_ang_33)+V2_mag*V3_mag*y_bus_mag_32*cos(y_bus_ang_32+V2_ang-V3_ang); + +Q2=-V2_mag*V1_mag*y_bus_mag_21*sin(y_bus_ang_21+V1_ang-V2_ang)-(V2_mag^2)*y_bus_mag_22*sin(y_bus_ang_22)-V2_mag*V3_mag*y_bus_mag_23*sin(y_bus_ang_23+V3_ang-V2_ang); + +P2=real(P2); +P3=real(P3); +Q2=real(Q2); + +delta_P2=(Pg2-Pd2)-(P2); +delta_P3=(Pg3-Pd3)-(P3); +delta_P2=(Pg2-Pd2)-(P2); +delta_Q2=(Qg2-Qd2)-(Q2); + +//forming jacobian matrix by differentiating expressions of P2,P3,Q2 +j11=V2_mag*V1_mag*y_bus_mag_21*sin(y_bus_ang_21+V1_ang-V2_ang)+V2_mag*V3_mag*y_bus_mag_23*sin(y_bus_ang_23+V3_ang-V2_ang); +j12=-V2_mag*V3_mag*y_bus_mag_23*sin(y_bus_ang_23+V3_ang-V2_ang); +j13=V1_mag*y_bus_mag_21*cos(y_bus_ang_21+V1_ang-V2_ang)+(V2_mag*2)*y_bus_mag_22*cos(y_bus_ang_22)+V3_mag*y_bus_mag_23*cos(y_bus_ang_23+V3_ang-V2_ang); + +j21=-V2_mag*V3_mag*y_bus_mag_32*sin(y_bus_ang_32+V2_ang-V3_ang); +j22=V3_mag*V1_mag*y_bus_mag_31*sin(y_bus_ang_31+V1_ang-V3_ang)+V2_mag*V3_mag*y_bus_mag_32*sin(y_bus_ang_32+V2_ang-V3_ang); +j23=V3_mag*y_bus_mag_32*cos(y_bus_ang_32+V2_ang-V3_ang); + +j31=V2_mag*V1_mag*y_bus_mag_21*cos(y_bus_ang_21+V1_ang-V2_ang)+V2_mag*V3_mag*y_bus_mag_23*cos(y_bus_ang_23+V3_ang-V2_ang); +j32=-V2_mag*V3_mag*y_bus_mag_23*cos(y_bus_ang_23+V3_ang-V2_ang); +j33=-V1_mag*y_bus_mag_21*sin(y_bus_ang_21+V1_ang-V2_ang)-(V2_mag*2)*y_bus_mag_22*sin(y_bus_ang_22)-V3_mag*y_bus_mag_23*sin(y_bus_ang_23+V3_ang-V2_ang); + +J=[j11 j12 j13;j21 j22 j23;j31 j32 j33]; +J=real(J); + +//power residuals +PR=[delta_P2;delta_P3;delta_Q2]; + +//changes in variables +ch_var=inv(J)*PR; + +V2_ang=V2_ang+ch_var(1,1); +V3_ang=V3_ang+ch_var(2,1); +V2_mag=V2_mag+ch_var(3,1); + +P1=(V1_mag^2)*y_bus_mag_11*cos(y_bus_ang_11)+V1_mag*V2_mag*y_bus_mag_21*cos(y_bus_ang_21+V2_ang-V1_ang)+V1_mag*V3_mag*y_bus_mag_31*cos(y_bus_ang_31+V3_ang-V1_ang); +Q1=-V1_mag^2*y_bus_mag_11*sin(y_bus_ang_11)-V1_mag*V2_mag*y_bus_mag_21*sin(y_bus_ang_21+V2_ang-V1_ang)-V1_mag*V3_mag*y_bus_mag_31*sin(y_bus_ang_31+V3_ang-V1_ang); + +Q3=-V3_mag*V1_mag*y_bus_mag_31*sin(y_bus_ang_31+V1_ang-V3_ang)-(V3_mag^2)*y_bus_mag_33*sin(y_bus_ang_33)-V2_mag*V3_mag*y_bus_mag_32*sin(y_bus_ang_32+V2_ang-V3_ang); +Qg3=Q3+Qd3; + +end + +S1=real(P1)+%i*real(Q1); +S2=P2+%i*Q2; +S3=P3+%i*Q3; + +printf('\nThe final results are given below:\n'); +printf('V2=%0.3f @ %0.3f rad\n',V2_mag,V2_ang); +printf('V3=%0.3f @ %0.3f rad\n',V3_mag,V3_ang); +printf('Qg3=%0.2f pu(with in limits)\n',Qg3); +printf('\nS1=');disp(S1);printf('pu'); +printf('\n\nS2=');disp(S2);printf("pu"); +printf('\n\nS3=');disp(S3);printf("pu"); +printf('\n\nTransmission losses=%0.3f pu\n',(real(P1)+P2+P3)); + +//Line Flows + +//V_mag=[V1_mag V2_mag V3_mag]; +//V_ang=[V1_ang V2_ang V3_ang]; +v1=V1_mag*(cos(V1_ang)+%i*sin(V1_ang)); +v2=V2_mag*(cos(V2_ang)+%i*sin(V2_ang)); +v3=V3_mag*(cos(V3_ang)+%i*sin(V3_ang)); +V=[v1 v2 v3]; +for i=1:3 + for j=1:3 + s(i,j)=conj(V(i))*(V(i)-V(j))*(2.941-%i*11.764)+conj(V(i))*V(i)*(%i*0.01); + s(j,i)=conj(V(j))*(V(j)-V(i))*(2.941-%i*11.764)+conj(V(j))*V(j)*(%i*0.01); + end +end +P=real(s); +Q=-imag(s); +printf('\nLine Flows\nThe following matrix shows the real part of line flows(in pu)');disp(P); +printf('\nThe following matrix shows the imaginary part of line flows(in pu)');disp(Q);
\ No newline at end of file diff --git a/Working_Examples/83/CH6/EX6.6/result_example_6_6.txt b/Working_Examples/83/CH6/EX6.6/result_example_6_6.txt new file mode 100755 index 0000000..368084d --- /dev/null +++ b/Working_Examples/83/CH6/EX6.6/result_example_6_6.txt @@ -0,0 +1,30 @@ + The final results are given below: +V2=1.081 @ -0.024 rad +V3=1.040 @ -0.066 rad +Qg3=0.48 pu(with in limits) + +S1= + 1.0311806 - 0.7581336i +pu + +S2= + 0.5004595 + 1.0012862i +pu + +S3= + - 1.5000616 - 0.1171441i +pu + +Transmission losses=0.032 pu + +Line Flows +The following matrix shows the real part of line flows(in pu) + 0. 0.1910725 0.8400462 + - 0.1842388 0. 0.6842088 + - 0.8263909 - 0.6735191 0. + +The following matrix shows the imaginary part of line flows(in pu) + - 0.010816 - 0.5879101 - 0.1918100 + 0.5927428 - 0.0116862 0.3838248 + 0.2247993 - 0.3635684 - 0.010816 + diff --git a/Working_Examples/83/CH6/EX6.7/example_6_7.sce b/Working_Examples/83/CH6/EX6.7/example_6_7.sce new file mode 100755 index 0000000..46c8605 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.7/example_6_7.sce @@ -0,0 +1,45 @@ +//Chapter 6 +//Example 6.7 +//page 234 +//To find modified Ybus after including regulating transformer +clear;clc; + +y34=2-%i*6;y23=0.666-%i*2; +y12=2-%i*6;y24=1-%i*3; +y13=1-%i*3; + +//case(i) when a=1/1.04; +a=1/1.04; +//to form Ybus matrix +Y11=y13+y12;Y12=-y12;Y13=-y13;Y14=0; +Y21=-y12;Y22=y12+y23+y24;Y23=-y23;Y24=-y24; +Y31=-y13;Y32=-y23;Y33=(a^2)*y34+y23+y13;Y34=-(a')*y34; +Y41=0;Y42=-y24;Y43=-a'*y34;Y44=y34+y24; + + +Ybus=[Y11 Y12 Y13 Y14; + Y21 Y22 Y23 Y24; + Y31 Y32 Y33 Y34; + Y41 Y42 Y43 Y44]; +printf('Case(i) When a=1/1.04'); +printf('\nYbus=');disp(Ybus); +printf('\nObserve the changes in elements between bus 3&4 when compared with the result of example_6.2'); + +//case(ii) when a=e^(-j3) + +a=cosd(3)-%i*sind(3); +//to form Ybus matrix +Y11=y13+y12;Y12=-y12;Y13=-y13;Y14=0; +Y21=-y12;Y22=y12+y23+y24;Y23=-y23;Y24=-y24; +Y31=-y13;Y32=-y23;Y33=(abs(a)^2)*y34+y23+y13;Y34=(a')*(-y34); +Y41=0;Y42=-y24;Y43=a*(-y34);Y44=y34+y24; + + +Ybus=[Y11 Y12 Y13 Y14; + Y21 Y22 Y23 Y24; + Y31 Y32 Y33 Y34; + Y41 Y42 Y43 Y44]; +printf('\n\nCase(ii) When a=e^(-j3)'); +printf('\nYbus=');disp(Ybus); +printf('\nObserve the changes in elements between bus 3&4 when compared with the result of example_6.2'); + diff --git a/Working_Examples/83/CH6/EX6.7/result_example_6_7.txt b/Working_Examples/83/CH6/EX6.7/result_example_6_7.txt new file mode 100755 index 0000000..3d2a478 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.7/result_example_6_7.txt @@ -0,0 +1,20 @@ + +-->exec('/home/samyak/scilab_working_directory/chapter_6/ex_7/example_6_7.sce', -1) +Case(i) When a=1/1.04 +Ybus= + 3. - 9.i - 2. + 6.i - 1. + 3.i 0 + - 2. + 6.i 3.666 - 11.i - 0.666 + 2.i - 1. + 3.i + - 1. + 3.i - 0.666 + 2.i 3.5151124 - 10.547337i - 1.9230769 + 5.7692308i + 0 - 1. + 3.i - 1.9230769 + 5.7692308i 3. - 9.i + +Observe the changes in elements between bus 3&4 when compared with the result of example_6.2 + +Case(ii) When a=e^(-j3) +Ybus= + 3. - 9.i - 2. + 6.i - 1. + 3.i 0 + - 2. + 6.i 3.666 - 11.i - 0.666 + 2.i - 1. + 3.i + - 1. + 3.i - 0.666 + 2.i 3.666 - 11.i - 2.3112748 + 5.8871053i + 0 - 1. + 3.i - 1.6832433 + 6.0964491i 3. - 9.i + +Observe the changes in elements between bus 3&4 when compared with the result of example_6.2 +-->diary(0); diff --git a/Working_Examples/83/CH6/EX6.8/example_6_8.sce b/Working_Examples/83/CH6/EX6.8/example_6_8.sce new file mode 100755 index 0000000..23a8c85 --- /dev/null +++ b/Working_Examples/83/CH6/EX6.8/example_6_8.sce @@ -0,0 +1,122 @@ +//Chapter 6 +//Example 6.8 +//page 226 +//To find load flow solution using the decoupled NR method and FDLF method +clear;clc; + +///////////////////////////////////////////////////////////////////////// +//Pd Qd Pg Qg V Bus Type///// +///////////////////////////////////////////////////////////////////////// +Pd1=2.0; Qd1=1.0; Pg1=0; Qg1=0; V1=1.04; //1 slack bus +Pd2=0; Qd2=0; Pg2=0.5; Qg2=1; V2=1; //2 PQ bus +Pd3=1.5; Qd3=0.6; Pg3=0.0; Qg3=0; V3=1.04; //3 PV bus +///////////////////////////////////////////////////////////////////////// +[V1_mag,V1_ang]=polar(V1); +[V2_mag,V2_ang]=polar(V2); +[V3_mag,V3_ang]=polar(V3); +y_series=1/(0.02+%i*0.08); +y_self=2*y_series; +y_off=-1*y_series; +Ybus=[y_self y_off y_off;y_off y_self y_off;y_off y_off y_self]; + +[y_bus_mag_21,y_bus_ang_21]=polar(Ybus(2,1)); +[y_bus_mag_22,y_bus_ang_22]=polar(Ybus(2,2)); +[y_bus_mag_23,y_bus_ang_23]=polar(Ybus(2,3)); +[y_bus_mag_31,y_bus_ang_31]=polar(Ybus(3,1)); +[y_bus_mag_32,y_bus_ang_32]=polar(Ybus(3,2)); +[y_bus_mag_33,y_bus_ang_33]=polar(Ybus(3,3)); +[y_bus_mag_11,y_bus_ang_11]=polar(Ybus(1,1)); + +//case(a) Decoupled NR method : +printf('\ncase(a) Decoupled NR method :\n') ; + +H22=0.96+23.508; +H23=-1.04*11.764; +H33=25.89; +L22=1+23.508; +H=[H22 H23;H23 H33]; +delta_P=[0.73;-1.62]; + +delta_V_ang=inv(H)*delta_P; +delta_V2_ang=delta_V_ang(1,1); +delta_V3_ang=delta_V_ang(2,1); +printf('\ndelta_Angle_V2=');disp(real(delta_V2_ang)); +printf('\ndelta_Angle_V3=');disp(real(delta_V3_ang)); +V2_ang=V2_ang-delta_V2_ang; +V3_ang=V3_ang-delta_V3_ang; + +Q2=-V2_mag*V1_mag*y_bus_mag_21*sin(y_bus_ang_21+V1_ang-V2_ang)-(V2_mag^2)*y_bus_mag_22*sin(y_bus_ang_22)-V2_mag*V3_mag*y_bus_mag_23*sin(y_bus_ang_23-V3_ang+V2_ang); + +printf('\nQ2=');disp(real(Q2)); +delta_Q2=(Qg2-Qd2)-(Q2); +printf('\ndelta_Q2=');disp(real(delta_Q2)); +L=[L22]; +delta_v=inv(L)*delta_Q2; +delta_V2=delta_v*V2_mag; + +printf('\ndelta_V2=%0.3f',delta_V2); +V2_mag=V2_mag+delta_V2; +printf('\n\nV2=%0.3f pu',V2_mag); + +Q3=-V3_mag*V1_mag*y_bus_mag_31*sin(y_bus_ang_31+V1_ang-V3_ang)-(V3_mag^2)*y_bus_mag_33*sin(y_bus_ang_33)-V2_mag*V3_mag*y_bus_mag_32*sin(y_bus_ang_32+V2_ang-V3_ang); + +printf('\n\nQ3=');disp(real(Q3)); + +//case(b) FDLF method: + +printf('\n\n\ncase(b) FDLF method :\n') ; + +///////////////////////////////////////////////////////////////////////// +//Pd Qd Pg Qg V Bus Type///// +///////////////////////////////////////////////////////////////////////// +Pd1=2.0; Qd1=1.0; Pg1=0; Qg1=0; V1=1.04; //1 slack bus +Pd2=0; Qd2=0; Pg2=0.5; Qg2=1; V2=1; //2 PQ bus +Pd3=1.5; Qd3=0.6; Pg3=0.0; Qg3=0; V3=1.04; //3 PV bus +///////////////////////////////////////////////////////////////////////// +[V1_mag,V1_ang]=polar(V1); +[V2_mag,V2_ang]=polar(V2); +[V3_mag,V3_ang]=polar(V3); +y_series=1/(0.02+%i*0.08); +y_self=2*y_series; +y_off=-1*y_series; +Ybus=[y_self y_off y_off;y_off y_self y_off;y_off y_off y_self]; + +[y_bus_mag_21,y_bus_ang_21]=polar(Ybus(2,1)); +[y_bus_mag_22,y_bus_ang_22]=polar(Ybus(2,2)); +[y_bus_mag_23,y_bus_ang_23]=polar(Ybus(2,3)); +[y_bus_mag_31,y_bus_ang_31]=polar(Ybus(3,1)); +[y_bus_mag_32,y_bus_ang_32]=polar(Ybus(3,2)); +[y_bus_mag_33,y_bus_ang_33]=polar(Ybus(3,3)); +[y_bus_mag_11,y_bus_ang_11]=polar(Ybus(1,1)); + +B22=-23.508; +B23=11.764; +B32=B23; +B33=B22; + +B=[-B22 -B23;-B32 -B33]; + +delta_P=[0.73;-1.557]; + +delta_V_ang=inv(B)*delta_P; +delta_V2_ang=delta_V_ang(1,1); +delta_V3_ang=delta_V_ang(2,1); +printf('\ndelta_Angle_V2=');disp(real(delta_V2_ang)); +printf('\ndelta_Angle_V3=');disp(real(delta_V3_ang)); +V2_ang=V2_ang-delta_V2_ang; +V3_ang=V3_ang-delta_V3_ang; + +Q2=-V2_mag*V1_mag*y_bus_mag_21*sin(y_bus_ang_21+V1_ang-V2_ang)-(V2_mag^2)*y_bus_mag_22*sin(y_bus_ang_22)-V2_mag*V3_mag*y_bus_mag_23*sin(y_bus_ang_23-V3_ang+V2_ang); + +delta_Q2=(Qg2-Qd2)-(Q2); + +delta_v=inv([-B22])*delta_Q2; +delta_V2=delta_v*V2_mag; + +printf('\ndelta_V2=%0.3f',delta_V2); +V2_mag=V2_mag+delta_V2; +printf('\n\nV2=%0.3f pu',V2_mag); + +Q3=-V3_mag*V1_mag*y_bus_mag_31*sin(y_bus_ang_31+V1_ang-V3_ang)-(V3_mag^2)*y_bus_mag_33*sin(y_bus_ang_33)-V2_mag*V3_mag*y_bus_mag_32*sin(y_bus_ang_32+V2_ang-V3_ang); + +printf('\n\nQ3=');disp(real(Q3)); diff --git a/Working_Examples/83/CH6/EX6.8/result_example_6_8.txt b/Working_Examples/83/CH6/EX6.8/result_example_6_8.txt new file mode 100755 index 0000000..f8f965a --- /dev/null +++ b/Working_Examples/83/CH6/EX6.8/result_example_6_8.txt @@ -0,0 +1,42 @@ + +-->exec('/home/samyak/scilab_working_directory/chapter_6/ex_8/example_6_8.sce', -1) + +case(a) Decoupled NR method : + +delta_Angle_V2= + - 0.0019022 + +delta_Angle_V3= + - 0.0634713 + +Q2= + - 1.1119998 + +delta_Q2= + 2.1119998 + +delta_V2=0.086 + +V2=1.086 pu + +Q3= + - 0.9203795 + + + +case(b) FDLF method : + +delta_Angle_V2= + - 0.0027900 + +delta_Angle_V3= + - 0.0676290 + +delta_V2=0.090 + +V2=1.090 pu + +Q3= + - 0.9890485 + +-->diary(0); diff --git a/Working_Examples/83/CH7/EX7.1/example_7_1.sce b/Working_Examples/83/CH7/EX7.1/example_7_1.sce new file mode 100755 index 0000000..4980957 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.1/example_7_1.sce @@ -0,0 +1,86 @@ +//Chapter 7 +//Example 7.1 +//page 246 +//To find incremental cost and load sharing +clear;clc; + +///Let us use the program given in the Appendix G in the textbook to write +//a function that returns the value of lamda and Loading of each generator +//when the total load on the plant is sent to the function + +function [lamdaprev,Pg]=optimum(Pd) + n=2; //number of generators + Alpha=[0.2 0.25]; + Beta=[40 30]; + lamda=35; //initial guess for lambda + lamdaprev=lamda; + eps=1; //tolerance + deltalamda=0.25; //increment in lamda + Pgmax=[125 125]; + Pgmin=[20 20]; + Pg=100*ones(n,1); + while abs(sum(Pg)-Pd)>eps + for i=1:n + Pg(i)=(lamda-Beta(i))/Alpha(i); + if Pg(i)>Pgmax(i) then + Pg(i)=Pgmax(i); + end + if Pg(i)<Pgmin(i) then + Pg(i)=Pgmin(i); + end + end + if (sum(Pg)-Pd)<0 then + lamdaprev=lamda; + lamda=lamda+deltalamda; + else + lamdaprev=lamda; + lamda=lamda-deltalamda; + end + end +endfunction + + +//to draw the table 7.1 +printf('Table 7.1 Output of each unit and plant output for various values of lamda\n') +printf('--------------------------------------------------------------\n'); +printf('Plant Lamda, Unit 1 Unit 2 Plant Output \n'); +printf('Rs/MWh Pg1,MW Pg2,MW (Pg1+Pg2),MW \n'); +printf('--------------------------------------------------------------\n'); + +Pd_matrix=[40 76 130 150 175 220 231.25 250]; +for i=1:8 + [lamda,Pg]=optimum(Pd_matrix(i)); + printf('%0.2f %0.2f %0.2f %0.2f\n',lamda,Pg(1),Pg(2),Pg(1)+Pg(2)); +end +printf('--------------------------------------------------------------\n'); + +//To draw the Graphs 7.3 and 7.4 + +Pd_test=40:3.75:250; +[Pd_ro,Pd_co]=size(Pd_test) +for i=1:Pd_co + [lamda,Pg]=optimum(Pd_test(i)); + lamda_test(i)=lamda; + Pg1_test(i)=Pg(1); + Pg2_test(i)=Pg(2); +end +Pg1_test=Pg1_test.'; //transposing without conjugating +Pg2_test=Pg2_test.'; +lamda_test=lamda_test.'; + +subplot(211) +plot(Pd_test,lamda_test); +title('Incremental Fuel cost versus plant output'); +xlabel('Plant output,MW'); +ylabel('Incremental fuel cost,Rs/MWh'); +set(gca(),"grid",[0,0]) +get("current_axes"); + +subplot(212) +plot(Pd_test,Pg1_test,Pd_test,Pg2_test); +title('Output of each unit versus plant output'); +xlabel('Plant output,MW'); +ylabel('Unit output,MW'); +legend(["Unit 1";"Unit 2"],[2]); +set(gca(),"grid",[0,0]) +get("current_axes");
\ No newline at end of file diff --git a/Working_Examples/83/CH7/EX7.1/result_example_7_1.txt b/Working_Examples/83/CH7/EX7.1/result_example_7_1.txt new file mode 100755 index 0000000..19fcad4 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.1/result_example_7_1.txt @@ -0,0 +1,18 @@ + + +Table 7.1 Output of each unit and plant output for various values of lamda +-------------------------------------------------------------- +Plant Lamda, Unit 1 Unit 2 Plant Output +Rs/MWh Pg1,MW Pg2,MW (Pg1+Pg2),MW +-------------------------------------------------------------- +35.00 20.00 20.00 40.00 +43.75 20.00 55.00 75.00 +50.00 50.00 80.00 130.00 +52.25 61.25 89.00 150.25 +55.00 75.00 100.00 175.00 +60.00 100.00 120.00 220.00 +61.25 106.25 125.00 231.25 +65.00 125.00 125.00 250.00 +-------------------------------------------------------------- + + diff --git a/Working_Examples/83/CH7/EX7.1/result_graph_example_7_1.jpg b/Working_Examples/83/CH7/EX7.1/result_graph_example_7_1.jpg Binary files differnew file mode 100755 index 0000000..0d12777 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.1/result_graph_example_7_1.jpg diff --git a/Working_Examples/83/CH7/EX7.2/example_7_2.sce b/Working_Examples/83/CH7/EX7.2/example_7_2.sce new file mode 100755 index 0000000..50258fe --- /dev/null +++ b/Working_Examples/83/CH7/EX7.2/example_7_2.sce @@ -0,0 +1,15 @@ +//Chapter 7 +//Example 7.2 +//page 248 +//To find the saving in fuel cost by optimal scheduling +clear;clc; + +//Example reveals that for optimal load sharing units 1&2 has to take up 50MW and 80MW respectively +//If each unit supplies 65MW,increase in cost for units 1&2 are + +Increase1=integrate('0.2*Pg1+40','Pg1',50,65); +Increase2=integrate('0.25*Pg2+30','Pg2',80,65); +printf('\nIncrease in cost for unit 1 is = %0.1f Rs/hr',Increase1); +printf('\n\nIncrease in cost for unit 2 is = %0.3f Rs/hr',Increase2); +printf('\n\nNet saving caused by optimum scheduling is = %0.3f Rs/hr',Increase1+Increase2); +printf('\n\nTotal yearly saving assuming continuous operation= Rs %d',(Increase1+Increase2)*24*365);
\ No newline at end of file diff --git a/Working_Examples/83/CH7/EX7.2/result_example_7_2.txt b/Working_Examples/83/CH7/EX7.2/result_example_7_2.txt new file mode 100755 index 0000000..61d8801 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.2/result_example_7_2.txt @@ -0,0 +1,9 @@ + + +Increase in cost for unit 1 is = 772.5 Rs/hr + +Increase in cost for unit 2 is = -721.875 Rs/hr + +Net saving caused by optimum scheduling is = 50.625 Rs/hr + +Total yearly saving assuming continuous operation= Rs 443474 diff --git a/Working_Examples/83/CH7/EX7.3/example_7_3.sce b/Working_Examples/83/CH7/EX7.3/example_7_3.sce new file mode 100755 index 0000000..427f9af --- /dev/null +++ b/Working_Examples/83/CH7/EX7.3/example_7_3.sce @@ -0,0 +1,41 @@ +//Chapter 7 +//Example 7.3 +//page 249 +//To find the economical operation +clear;clc; + +//from the table we got as the output in the example_7_1 +//for optimum operation of load 220MW,unit 1&2 must be loaded 100MW and 120MW respwctively +//and for a load of 76MW,unit 1&2 must be loaded 20MW and 56MW respwctively +start_up=400; +//case(i) +printf('\nCase(i)'); +//total fuel cost for the load of 220MW during 6AM to 6PM +Pg1=100; +Pg2=120; +C1=0.1*Pg1^2+40*Pg1+120; +C2=0.125*Pg2^2+30*Pg2+100; +total1=(C1+C2)*12; +printf('\nTotal fuel cost for the load of 220MW during 6AM to 6PM = Rs. %d',total1); + +//total fuel cost for the load of 76MW during 6PM to 6AM +Pg1=20; +Pg2=56; +C1=0.1*Pg1^2+40*Pg1+120; +C2=0.125*Pg2^2+30*Pg2+100; +total2=(C1+C2)*12; +printf('\nTotal fuel cost for the load of 76MW during 6PM to 6AM if both the units run = Rs. %d',total2); + +total=total1+total2; //total fuel cost for 24hrs + +printf('\nTotal fuel cost for the load during 24hrs if both the units run = Rs. %d',total); + +//case(ii) +printf('\n\nCase(ii)'); +//If during light load condition unit2 is On and Unit1 is Off then +Pg2=76; +C2=0.125*Pg2^2+30*Pg2+100; +total2=C2*12; +total_case2=total1+total2+start_up; + +printf('\nTotal fuel cost for the 24hrs laod if only unit 2 run during light loads is = Rs. %d',total_case2);
\ No newline at end of file diff --git a/Working_Examples/83/CH7/EX7.3/result_example_7_3.txt b/Working_Examples/83/CH7/EX7.3/result_example_7_3.txt new file mode 100755 index 0000000..1032b7b --- /dev/null +++ b/Working_Examples/83/CH7/EX7.3/result_example_7_3.txt @@ -0,0 +1,10 @@ + + +Case(i) +Total fuel cost for the load of 220MW during 6AM to 6PM = Rs. 127440 +Total fuel cost for the load of 76MW during 6PM to 6AM if both the units run = Rs. 37584 +Total fuel cost for the load during 24hrs if both the units run = Rs. 165024 + +Case(ii) +Total fuel cost for the 24hrs laod if only unit 2 run during light loads is = Rs. 165064 + diff --git a/Working_Examples/83/CH7/EX7.4/example_7_4.sce b/Working_Examples/83/CH7/EX7.4/example_7_4.sce new file mode 100755 index 0000000..2fb2f76 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.4/example_7_4.sce @@ -0,0 +1,59 @@ +//Chapter 7 +//Example 7.4 +//page 263 +//To find required generation for each plant and losses incurred +clear;clc; + +///Let us use the program given in the Appendix G in the textbook which includes penalty factor also to write +//a function that returns the value of lamda,Loading of each generator and losses +//when the total load on the plant is sent to the function + +function [lamda,Pg,PL]=optimum2(Pd) +n=2; //no of generators +Alpha=[0.02 0.04]; +Beta=[16 20]; +lamda=20; //initial value of lamda +lamdaprev=lamda; +eps=1; //tolerance +deltalamda=0.1; +Pgmax=[200 200]; +Pgmin=[0 0]; +B=[0.001 0;0 0]; +Pg=zeros(n,1); +noofiter=0; +PL=0; +Pg=zeros(n,1); +while abs(sum(Pg)-Pd-PL)>eps + for i=1:n + sigma=B(i,:)*Pg-B(i,i)*Pg(i); + Pg(i)=(1-(Beta(i)/lamda)-(2*sigma))/(Alpha(i)/lamda+2*B(i,i)); + PL=Pg.'*B*Pg; + if Pg(i)>Pgmax(i) then + Pg(i)=Pgmax(i); + end + if Pg(i)<Pgmin(i) then + Pg(i)=Pgmin(i); + end + end + PL=Pg.'*B*Pg; + if(sum(Pg)-Pd-PL)<0 then + lamdaprev=lamda; + lamda=lamda+deltalamda; + else + lamdaprev=lamda; + lamda=lamda-deltalamda; + end + noofiter=noofiter+1; + Pg; +end +endfunction + +//In this example let us take the answer .i.e load(Pd)=237.04MW and calculate +//lamda so that we can use the algorithm used in the textbook +Pd=237.04 +[lamda_test,Pg_test,PL_test]=optimum2(Pd); +printf('\nLagrange''s multiplier (lamda) is\n Lamda =%0.1f',lamda_test); +printf('\n\nRequired generation for optimum loading are \n Pg1=%0.2f MW \n Pg2=%d MW\n',Pg_test(1),Pg_test(2)); +printf('\nThe transmission power loss is\n PL=%0.2f MW',PL_test); +printf('\n\nThe load is \n Pd=%0.2f MW',Pd); + diff --git a/Working_Examples/83/CH7/EX7.4/result_example_7_4.txt b/Working_Examples/83/CH7/EX7.4/result_example_7_4.txt new file mode 100755 index 0000000..9038d91 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.4/result_example_7_4.txt @@ -0,0 +1,15 @@ + + +Lagrange's multiplier (lamda) is + Lamda =24.9 + +Required generation for optimum loading are + Pg1=128.57 MW + Pg2=125 MW + +The transmission power loss is + PL=16.53 MW + +The load is + Pd=237.04 MW + diff --git a/Working_Examples/83/CH7/EX7.5/example_7_5.sce b/Working_Examples/83/CH7/EX7.5/example_7_5.sce new file mode 100755 index 0000000..aed5fe2 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.5/example_7_5.sce @@ -0,0 +1,69 @@ +//Chapter 7 +//Example 7.5 +//page 264 +//To find savings when losses are coordinated +clear;clc; + +function [lamdaprev,Pg]=optimum(Pd) + n=2; //number of generators + Alpha=[0.02 0.04]; + Beta=[16 20]; + lamda=20; //initial guess for lambda + lamdaprev=lamda; + eps=1; //tolerance + deltalamda=0.25; //increment in lamda + Pgmax=[200 200]; + Pgmin=[0 0]; + Pg=100*ones(n,1); + while abs(sum(Pg)-Pd)>eps + for i=1:n + Pg(i)=(lamda-Beta(i))/Alpha(i); + if Pg(i)>Pgmax(i) then + Pg(i)=Pgmax(i); + end + if Pg(i)<Pgmin(i) then + Pg(i)=Pgmin(i); + end + end + if (sum(Pg)-Pd)<0 then + lamdaprev=lamda; + lamda=lamda+deltalamda; + else + lamdaprev=lamda; + lamda=lamda-deltalamda; + end + end +endfunction + +//the above function "optimum" doesn't coordinate losses + +//case(i) when the losses are included but not coordinated +[lamda_case1,Pg_case1]=optimum(237.04); +//since Pg2 does not supply transmission losses and the losses are supplied only by Pg1 +Pg2_1=Pg_case1(2); +//to get Pg1 we will solve Pg1+Pg2=0.001*Pg1^2+237.04 +//the above equation can be wriiten as (0.001*Pg1^2) - Pg1 +(237.04-Pg2) =0 +p=poly([0.001 -1 (237.04+Pg2_1)],"Pg1"); +Pg1_1=roots(p); +Pg1_1=Pg1_1(1); + +printf('\ncase(i) when the losses are included but not coordinated'); +printf('\nPg1=%0.2f MW Pg2=%0.2f MW',Pg1_1,Pg2_1); + +//case(ii) when the losses are also coordinated +//we have the solution for case(ii) from example_7_4 +Pg1_2=128.57; Pg2_2=125; //case(ii) + +printf('\n\ncase(ii) when the losses are coordinated'); +printf('\nPg1=%0.2f MW Pg2=%0.2f MW',Pg1_2,Pg2_2); + +//saving at plant 1 is +saving1=integrate('0.02*Pg1+16','Pg1',Pg1_2,Pg1_1); +printf('\n\nSaving at plant 1 due to loss coordination is = Rs %0.2f/hr',saving1); + +//saving at plant 2 is +saving2=integrate('0.04*Pg2+20','Pg2',Pg2_2,Pg2_1); +printf('\n\nSaving at plant 2 due to loss coordination is = Rs %0.2f/hr',saving2); + +//net savings achieved +printf('\n\nThe net saving achieved by coordinating losses while scheduling the recieved load of 237.04MW is Rs %0.2f/hr',saving1+saving2);
\ No newline at end of file diff --git a/Working_Examples/83/CH7/EX7.5/result_example_7_5.txt b/Working_Examples/83/CH7/EX7.5/result_example_7_5.txt new file mode 100755 index 0000000..7cd9f3c --- /dev/null +++ b/Working_Examples/83/CH7/EX7.5/result_example_7_5.txt @@ -0,0 +1,13 @@ + +case(i) when the losses are included but not coordinated +Pg1=274.54 MW Pg2=37.50 MW + +case(ii) when the losses are coordinated +Pg1=128.57 MW Pg2=125.00 MW + +Saving at plant 1 due to loss coordination is = Rs 2923.94/hr + +Saving at plant 2 due to loss coordination is = Rs -2034.38/hr + +The net saving achieved by coordinating losses while scheduling the recieved load of 237.04MW is Rs 889.56/hr + diff --git a/Working_Examples/83/CH7/EX7.6/example_7_6.sce b/Working_Examples/83/CH7/EX7.6/example_7_6.sce new file mode 100755 index 0000000..4948e09 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.6/example_7_6.sce @@ -0,0 +1,48 @@ +//Chapter 7 +//Example 7.6 +//page 268 +//To calculate the loss formula coefficients of the system +clear;clc; + +Ia=2-%i*0.5; Ic=1-%i*0.25; +Ib=1.6-%i*0.4; Id=3.6-%i*0.9; +Za=0.015+%i*0.06; Zc=0.01+%i*0.04; +Zb=0.015+%i*0.06; Zd=0.01+%i*0.04; + +ID=Id+Ic ;//total load current + +//calculation of current distribution factors +printf('\nCurrent distribution factors are :\n') +Ma1=(ID/ID); +Ma2=(0/ID); +Mb1=(-Ic/ID); +Mb2=(Id/ID); +Mc1=(Ic/ID); +Mc2=(Ic/ID); +Md1=(Id/ID); +Md2=(Id/ID); +printf('Ma1=%d\tMb1=%0.4f\tMc1=%0.4f\tMd1=%0.4f\nMa2=%d\tMb2=%0.4f\tMc2=%0.4f\tMd2=%0.4f',Ma1,Mb1,Mc1,Md1,Ma2,Mb2,Mc2,Md2); + +//bus voltage calcultion +[V1_mag,V1_ang]=polar(1.0+Ia*Za); +[V2_mag,V2_ang]=polar(1+Ib*Zb); +V1_ang=real(V1_ang)*180/%pi; +V2_ang=real(V2_ang)*180/%pi; +printf('\n\nBus voltages are given by \nV1=%0.3f @ %0.2fdeg PU\tV2=%0.3f @ %0.2fdeg PU',V1_mag,V1_ang,V2_mag,V2_ang); + +//current phase angles at the plants +sigma1=atand(imag(Ia)/real(Ia)); +sigma2=atand(imag(Ib+Ic)/real(Ib+Ic)); +printf('\n\nCurrent phase angles at the plants\nSigma1=%ddeg\tSigma2=%ddeg',sigma1,sigma2); + +//plant power factors +pf1=cosd(V1_ang-sigma1); +pf2=cosd(V2_ang-sigma2); +printf('\n\nThe plant power factors are\npf1=%0.4f\tpf2=%0.4f',pf1,pf2); + +//calculation of loss coefficients +B11=(Ma1*Ma1*real(Za)+Mb1*Mb1*real(Zb)+Mc1*Mc1*real(Zc)+Md1*Md1*real(Zd))/(V1_mag*V1_mag*pf1*pf1); +B22=(Ma2*Ma2*real(Za)+Mb2*Mb2*real(Zb)+Mc2*Mc2*real(Zc)+Md2*Md2*real(Zd))/(V2_mag*V2_mag*pf2*pf2); +B12=(Ma1*Ma2*real(Za)+Mb1*Mb2*real(Zb)+Mc1*Mc2*real(Zc)+Md1*Md2*real(Zd))/(V1_mag*V2_mag*pf1*pf2); +printf('\n\nThe Loss coefficients in PU are \nB11=%0.5f pu\nB22=%0.5f pu\nB12=%0.5f pu',B11,B22,B12); +printf('\n\nThe Loss coefficients in reciprocal megawatts are \nB11=%0.8f MW^-1\nB22=%0.8f MW^-1\nB12=%0.8f MW^-1',B11/100,B22/100,B12/100); diff --git a/Working_Examples/83/CH7/EX7.6/result_example_7_6.txt b/Working_Examples/83/CH7/EX7.6/result_example_7_6.txt new file mode 100755 index 0000000..d4cd7f2 --- /dev/null +++ b/Working_Examples/83/CH7/EX7.6/result_example_7_6.txt @@ -0,0 +1,25 @@ + + +Current distribution factors are : +Ma1=1 Mb1=-0.2174 Mc1=0.2174 Md1=0.7826 +Ma2=0 Mb2=0.7826 Mc2=0.2174 Md2=0.7826 + +Bus voltages are given by +V1=1.066 @ 6.06deg PU V2=1.052 @ 4.91deg PU + +Current phase angles at the plants +Sigma1=-14deg Sigma2=-14deg + +The plant power factors are +pf1=0.9391 pf2=0.9458 + +The Loss coefficients in PU are +B11=0.02226 pu +B22=0.01595 pu +B12=0.00406 pu + +The Loss coefficients in reciprocal megawatts are +B11=0.00022259 MW^-1 +B22=0.00015947 MW^-1 +B12=0.00004062 MW^-1 + diff --git a/Working_Examples/83/CH7/EX7.7/example_7_7.sce b/Working_Examples/83/CH7/EX7.7/example_7_7.sce new file mode 100755 index 0000000..fa8e64f --- /dev/null +++ b/Working_Examples/83/CH7/EX7.7/example_7_7.sce @@ -0,0 +1,72 @@ +//Chapter 7 +//Example 7.7 +//page 281 +//To find the optimal generation schedule for a typical day of the fundamental hydrothermal system +clear;clc; + +h_b=20;//basic head of the water +e=0.005; //head correction factor +r=2; //non-effective water discharge +Pd_1=7; Pd_2=10; Pd_3=5; //load at three intervals of time during a day +alpha=0.5;//positive scalar +X_0=100; //initial water storage in the reservoir +X_3=60; //final water storage in the reservoir +//let us assume the initial values of the control variables +q_2=15; +q_3=15; +i=0; //iteration count +grad_2=1;grad_3=1; //inital value for iterations + +while ((grad_2>0.1)|(grad_3>0.1)) + +//water discharge in the first interval +q_1=X_0-X_3-(q_2+q_3); + +//water level after the first intervals are +X_1=X_0-q_1; +X_2=X_1-q_2; + +//hydro generations in the subintervals +Pgh_1=9.81*(10^-3)*20*(1+0.5*e*(X_1+X_0))*(q_1-r); +Pgh_2=9.81*(10^-3)*20*(1+0.5*e*(X_2+X_1))*(q_2-r); +Pgh_3=9.81*(10^-3)*20*(1+0.5*e*(X_3+X_2))*(q_3-r); + +//thermal generation in the three intervals +Pgt_1=Pd_1-Pgh_1; +Pgt_2=Pd_2-Pgh_2; +Pgt_3=Pd_3-Pgh_3; + +//calculating lamda_1 for three subintervals +lamda_1_1=Pgt_1+25; +lamda_1_2=Pgt_2+25; +lamda_1_3=Pgt_3+25; + +//since we are considering lossless case +lamda_3_1=lamda_1_1; +lamda_3_2=lamda_1_2; +lamda_3_3=lamda_1_3; + +//for calculating lamda_2 for three intervals +lamda_2_1=lamda_3_1*9.81*(10^-3)*20*(1+0.5*e*(2*X_0-2*q_1+r)); +lamda_2_2=lamda_2_1-lamda_3_1*(0.5*9.81*(10^-3)*20*e*(q_1-r))-lamda_3_2*(0.5*9.81*(10^-3)*20*e*(q_2-r)); +lamda_2_3=lamda_2_2-lamda_3_2*(0.5*9.81*(10^-3)*20*e*(q_2-r))-lamda_3_3*(0.5*9.81*(10^-3)*20*e*(q_3-r)); + +//calculation of gradient vector +grad_2=lamda_2_2-lamda_3_2*9.81*(10^-3)*20*(1+0.5*e*(2*X_1-2*q_2+r)); +grad_3=lamda_2_3-lamda_3_3*9.81*(10^-3)*20*(1+0.5*e*(2*X_2-2*q_3+r)); + +q_2=q_2-alpha*grad_2; //updating value of q and reiterating +q_3=q_3-alpha*grad_3; +i=i+1; +end + +//Hydel and thermal generation for the three sub interavals are given in tabular format +printf('\nResults for Optimal Loading of Hydrothermal stations at the end of %d iterations',i); +printf('\n---------------------------------------------------------------------------------------\n'); +printf('Interval\t\tLoad\t\tHydro\t\tThermal\t\tWater discharge\n'); +printf(' \t\tMW\t\tMW\t\tMW\t\tm^3/s\n'); +printf('---------------------------------------------------------------------------------------\n'); +printf(' 1 \t\t%d\t\t%0.4f\t\t%0.4f\t\t%0.2f\n',Pd_1,Pgh_1,Pgt_1,q_1); +printf(' 2 \t\t%d\t\t%0.4f\t\t%0.4f\t\t%0.2f\n',Pd_2,Pgh_2,Pgt_2,q_2); +printf(' 3 \t\t%d\t\t%0.4f\t\t%0.4f\t\t%0.2f\n',Pd_3,Pgh_3,Pgt_3,q_3); +printf('---------------------------------------------------------------------------------------\n'); diff --git a/Working_Examples/83/CH7/EX7.7/result_example_7_7.txt b/Working_Examples/83/CH7/EX7.7/result_example_7_7.txt new file mode 100755 index 0000000..7ba65bd --- /dev/null +++ b/Working_Examples/83/CH7/EX7.7/result_example_7_7.txt @@ -0,0 +1,11 @@ +Results for Optimal Loading of Hydrothermal stations at the end of 46 iterations +--------------------------------------------------------------------------------------- +Interval Load Hydro Thermal Water discharge + MW MW MW m^3/s +--------------------------------------------------------------------------------------- + 1 7 3.0068 3.9932 12.43 + 2 10 5.0295 4.9705 20.53 + 3 5 1.3133 3.6867 7.03 +--------------------------------------------------------------------------------------- + + diff --git a/Working_Examples/83/CH8/EX8.1/example_8_1.sce b/Working_Examples/83/CH8/EX8.1/example_8_1.sce new file mode 100755 index 0000000..1aca454 --- /dev/null +++ b/Working_Examples/83/CH8/EX8.1/example_8_1.sce @@ -0,0 +1,18 @@ +//Chapter 8 +//Example 8.1 +//page 300 +//To determine the change in the frequency +clear;clc; +f=50; +H=5e3; +KE=H*100*1000; //K.E stored in the generator +PI=50e6; //power input to generator before the stem valve is closed +EE=PI*0.4 ; //Excess energy input to the rotating parts +fnew=f*((KE+EE)/KE)^0.5; //frequency at the end of the 0.4sec +printf('\nKinetic Energy stored in the rotating parts of generator and turbine = %d kW-sec',KE/1000); +printf('\nExcess power input to generator before the stem valve begins to close=%d MW',PI/1000000); +printf('\nExcess energy input to rotating parts in 0.4sec=%d kW-sec',EE/1000); +printf('\nFrequency at the end of 0.4sec=%0.2f Hz\n\n',fnew); + + + diff --git a/Working_Examples/83/CH8/EX8.1/result_example_8_1.txt b/Working_Examples/83/CH8/EX8.1/result_example_8_1.txt new file mode 100755 index 0000000..30dcfbe --- /dev/null +++ b/Working_Examples/83/CH8/EX8.1/result_example_8_1.txt @@ -0,0 +1,8 @@ + + +Kinetic Energy stored in the rotating parts of generator and turbine = 500000 kW-sec +Excess power input to generator before the stem valve begins to close=50 MW +Excess energy input to rotating parts in 0.4sec=20000 kW-sec +Frequency at the end of 0.4sec=50.99 Hz + + diff --git a/Working_Examples/83/CH8/EX8.2/example_8_2.sce b/Working_Examples/83/CH8/EX8.2/example_8_2.sce new file mode 100755 index 0000000..79f91fa --- /dev/null +++ b/Working_Examples/83/CH8/EX8.2/example_8_2.sce @@ -0,0 +1,13 @@ +//Chapter 8 +//Example 8.2 +//page 301 +//To determine determine load sharing and system frequency +clear;clc; +f=50; // system frequency +x=200; //load on first generator(value is assumed first) +delta_f=0.01*x; //from the first equation given in the book +x=(3.75)/(0.01+0.00625); //by substituting (i) in (ii) +delta_f=0.01*x; //recalculating the value +x2=600-x; +printf('\nLoad shared by the generator:\n\t Generator1=%0.2f MW\n\tGenerator2=%0.2f MW\n',x,x2); +printf('\nSystem Frequency=%0.2f Hz\n\n',f-delta_f); diff --git a/Working_Examples/83/CH8/EX8.2/result_example_8_2.txt b/Working_Examples/83/CH8/EX8.2/result_example_8_2.txt new file mode 100755 index 0000000..d28f95d --- /dev/null +++ b/Working_Examples/83/CH8/EX8.2/result_example_8_2.txt @@ -0,0 +1,8 @@ + + +Load shared by the generator: + Generator1=230.77 MW + Generator2=369.23 MW + +System Frequency=47.69 Hz + diff --git a/Working_Examples/83/CH9/EX9.1/example_9_1.sce b/Working_Examples/83/CH9/EX9.1/example_9_1.sce new file mode 100755 index 0000000..d845c45 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.1/example_9_1.sce @@ -0,0 +1,45 @@ +//Chapter 9 +//Example 9.1 +//page 335 +//To calculate fault current +clear;clc; +//selecting base KVA and MVA +mvab=100; +Gmva=10; +T1mva=10; T2mva=5; +Gkvb=11; //generator kV base +OHLkvb=33; //overhead line kV base +Ckvb=6.6;// cable kB base +xg1=%i*0.15; xg2=%i*0.125; xt1=%i*0.10; xt2=%i*0.08; +xOHL=0.27+%i*0.36 ; xcab= 0.135+%i*0.08; + +//clculating PU impedances + +xg1=(xg1*mvab)/Gmva; +xg2=(xg2*mvab)/Gmva; +xt1=(xt1*mvab)/T1mva; +xt2=(xt2*mvab)/T2mva; +xOHL=(30*xOHL*mvab)/(OHLkvb^2); +xcab=(3*xcab*mvab)/(Ckvb^2); +//displaying results +printf('\n Reactance of G1= j%0.1f pu \n',abs(imag(xg1))); +printf(' Reactance of G2= j%0.1f pu\n',abs(imag(xg2))); +printf(' Reactance of T1= j%0.1f pu\n',abs(imag(xt1))); +printf(' Reactance of T2= j%0.1f pu\n',abs(imag(xt2))); +printf(' Overhead line impedance=(%0.3f + j%0.3f) pu\n',real(xOHL),abs(imag(xOHL))); +printf(' Cable impedance= (%0.3f + j%0.3f) pu\n',real(xcab),abs(imag(xcab))); + +// Impedance diagram is as shown in the figure9.7 in the textbook +// A XCOS simulation for this proble is done to explain the subtransient,transient and steady state periods of a symmetrical short circuit +xtotal=((xg1*xg2)/(xg1+xg2)+xt1+xt2+xOHL+xcab); +Isc_pu=(1/xtotal); +Ibase=(mvab/(sqrt(3)*Ckvb))*1000; +Isc=Isc_pu*Ibase; +x_F_to_bus=(xt1+xt2+xOHL+xcab); +v_11b=x_F_to_bus*Isc_pu*11; +//displaying results +printf('\nTotal impedance= %0.1f < %0.2f deg pu \n',abs(xtotal),atand(imag(xtotal)/real(xtotal))); +printf('Short circuit current= %d A\n',abs(Isc)); +printf('Voltage at 11kV bus=%0.2f kV\n',abs(v_11b)); + + diff --git a/Working_Examples/83/CH9/EX9.1/example_9_1_3phase_plot.xcos b/Working_Examples/83/CH9/EX9.1/example_9_1_3phase_plot.xcos new file mode 100755 index 0000000..e08ac86 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.1/example_9_1_3phase_plot.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.2" title="example_9_1_3phase_plot"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="-62268d13:130f6b46d8a:-7eea"/><mxCell id="-62268d13:130f6b46d8a:-7eeb" parent="-62268d13:130f6b46d8a:-7eea"/><ImplicitLink id="-62268d13:130f6b46d8a:-7ec1" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7ed8" target="-62268d13:130f6b46d8a:-7ed4"><mxGeometry as="geometry" x="496.0" y="70.0"><mxPoint as="sourcePoint" x="1040.0" y="230.0"/><mxPoint as="targetPoint" x="1126.0" y="230.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-62268d13:130f6b46d8a:-7ec0" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7ed5" target="-62268d13:130f6b46d8a:-7ed2"><mxGeometry as="geometry" x="496.0" y="70.0"><mxPoint as="sourcePoint" x="1180.0" y="230.0"/><mxPoint as="targetPoint" x="1236.0" y="230.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-62268d13:130f6b46d8a:-7ebf" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7ed1" target="-62268d13:130f6b46d8a:-7ece"><mxGeometry as="geometry" x="496.0" y="70.0"><mxPoint as="sourcePoint" x="1280.0" y="230.0"/><mxPoint as="targetPoint" x="1316.0" y="230.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7ebe" interfaceFunctionName="Inductor" ordering="1" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false;shadow=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0047746482"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0047746482"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="480.0" y="150.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ebc" ordering="1" parent="-62268d13:130f6b46d8a:-7ebe" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><mxCell connectable="0" id="-62268d13:130f6b46d8a:-7ebe#identifier" parent="-62268d13:130f6b46d8a:-7ebe" style="noLabel=0;opacity=0;" vertex="1"><mxGeometry as="geometry" relative="1" x="0.5" y="1.1"/></mxCell><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ebd" ordering="1" parent="-62268d13:130f6b46d8a:-7ebe" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7e95" interfaceFunctionName="CurrentSensor" ordering="2" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="mirror=false;CurrentSensor;rotation=0;flip=false" value="CurrentSensor"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="720.0" y="600.0"/></BasicBlock><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7e92" ordering="1" parent="-62268d13:130f6b46d8a:-7e95" style="mirror=false;rotation=0;ImplicitOutputPort;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="6.0"/></ImplicitOutputPort><ExplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7e94" ordering="2" parent="-62268d13:130f6b46d8a:-7e95" style="mirror=false;ExplicitOutputPort;rotation=0;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="26.0"/></ExplicitOutputPort><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7e93" ordering="1" parent="-62268d13:130f6b46d8a:-7e95" style="mirror=false;rotation=0;ImplicitInputPort;flip=false;align=left;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7e91" interfaceFunctionName="CMSCOPE" ordering="3" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="mirror=false;CMSCOPE;rotation=0;flip=false" value="<html><body> MScope </body></html>"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-2 -0.5"/><data column="0" line="6" value="2 0.5"/><data column="0" line="7" value=".2 .2"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="R phase: Voltage and Fault Current"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.2"/><data column="0" line="2" realPart="0.2"/><data column="0" line="3" realPart="-2.0"/><data column="0" line="4" realPart="2.0"/><data column="0" line="5" realPart="-0.5"/><data column="0" line="6" realPart="0.5"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="1050.0" y="440.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7926" ordering="1" parent="-62268d13:130f6b46d8a:-7e91" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7925" ordering="2" parent="-62268d13:130f6b46d8a:-7e91" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ControlPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7924" ordering="1" parent="-62268d13:130f6b46d8a:-7e91" style="ControlPort;align=center;verticalAlign=top;spacing=10.0;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitLink id="-62268d13:130f6b46d8a:-7e8d" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7e94" style="ExplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-72f583ad:131105b55e2:-7925"><mxGeometry as="geometry" height="80.0" width="80.0" x="563.0" y="240.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ExplicitLink><CommandControlLink id="-62268d13:130f6b46d8a:-7e8c" parent="-62268d13:130f6b46d8a:-7eeb" source="-1c319e25:130fec5b885:-7dcb" target="-72f583ad:131105b55e2:-7924"><mxGeometry as="geometry" height="80.0" width="80.0" x="656.0" y="313.0"/></CommandControlLink><ExplicitLink id="-62268d13:130f6b46d8a:-7e86" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7e89" style="ExplicitLink;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-72f583ad:131105b55e2:-7926"><mxGeometry as="geometry" relative="1"><Array as="points" scilabClass="ScilabList"><mxPoint x="990.0" y="420.0"/></Array></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="-62268d13:130f6b46d8a:-7e76" interfaceFunctionName="CLOCK_f" ordering="4" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="mirror=false;rotation=0;CLOCK_f;flip=false" value="CLOCK_f"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="79.0"/><data column="1" line="0" realPart="-110.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ee1"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ee1"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="00"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-4"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7edd"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7edd"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="252.71065999999996"/><data column="1" line="0" realPart="-292.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ed8"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ed8"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="338.0"/><data column="0" line="2" realPart="263.37732666666665"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-556.0"/><data column="0" line="2" realPart="-296.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="264.71065999999996"/><data column="0" line="1" realPart="139.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-280.0"/><data column="0" line="1" realPart="-66.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="266.0439933333333"/><data column="0" line="1" realPart="443.71000000000004"/><data column="0" line="2" realPart="403.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-296.0"/><data column="0" line="1" realPart="-314.0"/><data column="0" line="2" realPart="-314.0"/><data column="0" line="3" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="1049.50029" y="370.14363"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-1c319e25:130fec5b885:-7dcb" ordering="1" parent="-62268d13:130f6b46d8a:-7e76" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><GroundBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7e7f" interfaceFunctionName="Ground" ordering="5" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="190.0" y="490.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7e7e" ordering="1" parent="-62268d13:130f6b46d8a:-7e7f" style="ImplicitInputPort;align=center;rotation=90;flip=false;mirror=false;verticalAlign=top;spacing=10"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7ee5" interfaceFunctionName="Inductor" ordering="6" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0039788735"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0039788735"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0039788735"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="50.0" x="480.0" y="250.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ee3" ordering="1" parent="-62268d13:130f6b46d8a:-7ee5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ee4" ordering="1" parent="-62268d13:130f6b46d8a:-7ee5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7edc" interfaceFunctionName="Resistor" ordering="7" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.744"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.744"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.744"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="906.0" y="210.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7eda" ordering="1" parent="-62268d13:130f6b46d8a:-7edc" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7edb" ordering="1" parent="-62268d13:130f6b46d8a:-7edc" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><TextBlock id="-1c319e25:130fec5b885:-7e13" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Generator 1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator 1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator 1"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="340.0" y="120.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7e11" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;flip=false;mirror=false" value="Generator 2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator 2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator 2"/></ScilabString><mxGeometry as="geometry" height="20.0" width="30.0" x="360.0" y="300.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7e05" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.5"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.5"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.5"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="490.0" y="120.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7e02" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j2.5"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j2.5"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j2.5"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="480.0" y="300.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7dee" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.0"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.0"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.0"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="770.0" y="180.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7dea" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="(0.744 + j0.99)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="(0.744 + j0.99)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="(0.744 + j0.99)"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="950.0" y="180.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7de6" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.6"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.6"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.6"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="1130.0" y="180.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7de4" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="(0.93 + j0.55)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="(0.93 + j0.55)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="(0.93 + j0.55)"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="1280.0" y="180.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7dd9" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=15;fontColor=#E3301E;flip=false;mirror=false" value="F"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="F"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="F"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="1460.0" y="200.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7dd5" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#292AFE;flip=false;mirror=false" value="Phase R Voltage"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase R Voltage"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase R Voltage"/></ScilabString><mxGeometry as="geometry" height="20.0" width="200.0" x="350.0" y="410.0"/></TextBlock><TextBlock id="-1c319e25:130fec5b885:-7dce" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#292AFE;flip=false;mirror=false" value="Phase R Fault Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase R Fault Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase R Fault Current"/></ScilabString><mxGeometry as="geometry" height="20.0" width="200.0" x="660.0" y="650.0"/></TextBlock><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7ed9" interfaceFunctionName="Inductor" ordering="8" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0031512678"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0031512678"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0031512678"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="986.0" y="210.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ed7" ordering="1" parent="-62268d13:130f6b46d8a:-7ed9" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ed8" ordering="1" parent="-62268d13:130f6b46d8a:-7ed9" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7ed6" interfaceFunctionName="Inductor" ordering="9" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0050929581"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0050929581"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0050929581"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="1126.0" y="210.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ed4" ordering="1" parent="-62268d13:130f6b46d8a:-7ed6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ed5" ordering="1" parent="-62268d13:130f6b46d8a:-7ed6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7ed3" interfaceFunctionName="Resistor" ordering="10" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.93"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.93"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.93"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="1236.0" y="210.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ed1" ordering="1" parent="-62268d13:130f6b46d8a:-7ed3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ed2" ordering="1" parent="-62268d13:130f6b46d8a:-7ed3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="73620253:131100f081f:-7abc" interfaceFunctionName="Switch" ordering="11" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.000001"/><data column="0" line="1" value="100000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-6"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="1420.0" y="220.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="3b7a3c23:13110576cee:-7f30" ordering="1" parent="73620253:131100f081f:-7abc" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="3b7a3c23:13110576cee:-7f2f" ordering="2" parent="73620253:131100f081f:-7abc" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="3b7a3c23:13110576cee:-7f2e" ordering="1" parent="73620253:131100f081f:-7abc" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock blockType="h" id="73620253:131100f081f:-7ab3" interfaceFunctionName="STEP_FUNCTION" ordering="12" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.0008"/><data column="0" line="1" value="-1"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0E-4"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ecd"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ecd"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="188.571433"/><data column="1" line="0" realPart="-150.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7eca"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7eca"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="324.000003"/><data column="0" line="2" realPart="285.478395"/><data column="0" line="3" realPart="285.478395"/><data column="0" line="4" realPart="324.000003"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-406.39289999999994"/><data column="0" line="2" realPart="-406.39289999999994"/><data column="0" line="3" realPart="-316.69678"/><data column="0" line="4" realPart="-316.69678"/><data column="0" line="5" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="204.571433"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-140.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="1610.0" y="510.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="3b7a3c23:13110576cee:-7f33" ordering="1" parent="73620253:131100f081f:-7ab3" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ImplicitLink id="73620253:131100f081f:-7aa5" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7ecf" target="3b7a3c23:13110576cee:-7f30"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="1416.0" y="230.0"/><mxPoint as="targetPoint" x="1370.0" y="230.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7ed0" interfaceFunctionName="Inductor" ordering="13" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0017507043"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0017507043"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0017507043"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="1316.0" y="210.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ece" ordering="1" parent="-62268d13:130f6b46d8a:-7ed0" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ecf" ordering="1" parent="-62268d13:130f6b46d8a:-7ed0" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><SplitBlock id="38b3b6e7:131103c7d69:-7eb4" ordering="14" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="587.0" y="227.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="38b3b6e7:131103c7d69:-7eb3" ordering="1" parent="38b3b6e7:131103c7d69:-7eb4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="38b3b6e7:131103c7d69:-7eb2" ordering="1" parent="38b3b6e7:131103c7d69:-7eb4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="38b3b6e7:131103c7d69:-7eb1" ordering="2" parent="38b3b6e7:131103c7d69:-7eb4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="38b3b6e7:131103c7d69:-7eaf" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7ebd" target="38b3b6e7:131103c7d69:-7eb2"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="590.0" y="170.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="38b3b6e7:131103c7d69:-7eb5" parent="-62268d13:130f6b46d8a:-7eeb" source="38b3b6e7:131103c7d69:-7eb1" target="-62268d13:130f6b46d8a:-7ecb"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="762.0" y="230.0"/><mxPoint as="targetPoint" x="590.0" y="230.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7ecd" interfaceFunctionName="Inductor" ordering="15" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0031830988"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0031830988"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="766.0" y="210.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ecb" ordering="1" parent="-62268d13:130f6b46d8a:-7ecd" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7ecc" ordering="1" parent="-62268d13:130f6b46d8a:-7ecd" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="-62268d13:130f6b46d8a:-7ec3" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7ecc" target="-62268d13:130f6b46d8a:-7edb"><mxGeometry as="geometry" x="496.0" y="70.0"><mxPoint as="sourcePoint" x="820.0" y="230.0"/><mxPoint as="targetPoint" x="906.0" y="230.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-62268d13:130f6b46d8a:-7ec2" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7eda" target="-62268d13:130f6b46d8a:-7ed7"><mxGeometry as="geometry" x="496.0" y="70.0"><mxPoint as="sourcePoint" x="950.0" y="230.0"/><mxPoint as="targetPoint" x="986.0" y="230.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7e25" interfaceFunctionName="SineVoltage" ordering="16" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="350.0" y="140.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7dd3" ordering="1" parent="-72f583ad:131105b55e2:-7e25" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7dd4" ordering="1" parent="-72f583ad:131105b55e2:-7e25" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7e22" interfaceFunctionName="SineVoltage" ordering="17" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="340.0" y="240.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7dcf" ordering="1" parent="-72f583ad:131105b55e2:-7e22" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7dd0" ordering="1" parent="-72f583ad:131105b55e2:-7e22" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><ImplicitLink id="-72f583ad:131105b55e2:-7df7" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7dd3" target="-62268d13:130f6b46d8a:-7ebc"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="404.0" y="170.0"/><mxPoint as="targetPoint" x="470.0" y="170.0"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7de3" ordering="18" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="207.0" y="267.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7de2" ordering="1" parent="-72f583ad:131105b55e2:-7de3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7de1" ordering="1" parent="-72f583ad:131105b55e2:-7de3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7de0" ordering="2" parent="-72f583ad:131105b55e2:-7de3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7dde" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7de1" target="-72f583ad:131105b55e2:-7dd4"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="210.0" y="170.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7de4" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7de0" target="-72f583ad:131105b55e2:-7dd0"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="336.0" y="270.0"/><mxPoint as="targetPoint" x="210.0" y="270.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7dcd" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7ee4" target="38b3b6e7:131103c7d69:-7eb3"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="590.0" y="270.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7db6" ordering="19" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="207.0" y="377.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7db5" ordering="1" parent="-72f583ad:131105b55e2:-7db6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7db4" ordering="1" parent="-72f583ad:131105b55e2:-7db6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7db3" ordering="2" parent="-72f583ad:131105b55e2:-7db6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7db2" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7de2" target="-72f583ad:131105b55e2:-7db5"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="210.0" y="370.0"/><mxPoint x="210.0" y="280.0"/><mxPoint x="210.0" y="380.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7db1" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7db4" target="-62268d13:130f6b46d8a:-7e88"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7d7f" ordering="20" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="207.0" y="457.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7d7e" ordering="1" parent="-72f583ad:131105b55e2:-7d7f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7d7d" ordering="1" parent="-72f583ad:131105b55e2:-7d7f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7d7c" ordering="2" parent="-72f583ad:131105b55e2:-7d7f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7d7b" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7db3" target="-72f583ad:131105b55e2:-7d7e"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7d7a" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7d7d" target="-62268d13:130f6b46d8a:-7e7e"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="210.0" y="460.0"/><mxPoint x="210.0" y="470.0"/><mxPoint x="210.0" y="470.0"/><mxPoint x="210.0" y="490.0"/><mxPoint x="210.0" y="490.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7d80" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7d7c" target="-62268d13:130f6b46d8a:-7e93"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="716.0" y="620.0000000000001"/><mxPoint as="targetPoint" x="210.84337349397592" y="457.83132530120486"/><Array as="points" scilabClass="ScilabList"><mxPoint x="578.3132530120482" y="457.83132530120486"/><mxPoint x="578.3132530120482" y="620.4819277108434"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7d79" parent="-62268d13:130f6b46d8a:-7eeb" source="3b7a3c23:13110576cee:-7f2e" target="-62268d13:130f6b46d8a:-7e92"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="764.0" y="610.0000000000001"/><mxPoint as="targetPoint" x="1461.5384615384614" y="238.46153846153845"/><Array as="points" scilabClass="ScilabList"><mxPoint x="1490.0" y="240.0"/><mxPoint x="1492.3076923076922" y="607.6923076923076"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7d12" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7ce6" target="-72f583ad:131105b55e2:-7ce4"><mxGeometry as="geometry" x="506.0" y="660.0"><mxPoint as="sourcePoint" x="1050.0" y="820.0"/><mxPoint as="targetPoint" x="1136.0" y="820.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7d11" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7ce3" target="-72f583ad:131105b55e2:-7ce0"><mxGeometry as="geometry" x="506.0" y="660.0"><mxPoint as="sourcePoint" x="1190.0" y="820.0"/><mxPoint as="targetPoint" x="1246.0" y="820.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7d10" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7ce1" target="-72f583ad:131105b55e2:-7cd7"><mxGeometry as="geometry" x="506.0" y="660.0"><mxPoint as="sourcePoint" x="1290.0" y="820.0"/><mxPoint as="targetPoint" x="1326.0" y="820.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7d0f" interfaceFunctionName="Inductor" ordering="21" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false;shadow=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0047746482"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0047746482"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="490.0" y="740.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7d0e" ordering="1" parent="-72f583ad:131105b55e2:-7d0f" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><mxCell connectable="0" id="-72f583ad:131105b55e2:-7d0f#identifier" parent="-72f583ad:131105b55e2:-7d0f" style="noLabel=0;opacity=0;" vertex="1"><mxGeometry as="geometry" relative="1" x="0.5" y="1.1"/></mxCell><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7d0d" ordering="1" parent="-72f583ad:131105b55e2:-7d0f" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7d0c" interfaceFunctionName="CurrentSensor" ordering="22" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="mirror=false;CurrentSensor;rotation=0;flip=false" value="CurrentSensor"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="730.0" y="1190.0"/></BasicBlock><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7d0b" ordering="1" parent="-72f583ad:131105b55e2:-7d0c" style="mirror=false;rotation=0;ImplicitOutputPort;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="6.0"/></ImplicitOutputPort><ExplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7d0a" ordering="2" parent="-72f583ad:131105b55e2:-7d0c" style="mirror=false;ExplicitOutputPort;rotation=0;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="26.0"/></ExplicitOutputPort><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7d09" ordering="1" parent="-72f583ad:131105b55e2:-7d0c" style="mirror=false;rotation=0;ImplicitInputPort;flip=false;align=left;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7d08" interfaceFunctionName="CMSCOPE" ordering="23" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="mirror=false;CMSCOPE;rotation=0;flip=false" value="<html><body> MScope </body></html>"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="2"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-2 -0.5"/><data column="0" line="6" value="2 0.5"/><data column="0" line="7" value=".2 .2"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Y phase: Voltage and Fault Current"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.2"/><data column="0" line="2" realPart="0.2"/><data column="0" line="3" realPart="-2.0"/><data column="0" line="4" realPart="2.0"/><data column="0" line="5" realPart="-0.5"/><data column="0" line="6" realPart="0.5"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="2.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="1060.0" y="1030.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7921" ordering="1" parent="-72f583ad:131105b55e2:-7d08" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7920" ordering="2" parent="-72f583ad:131105b55e2:-7d08" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ControlPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-791f" ordering="1" parent="-72f583ad:131105b55e2:-7d08" style="ControlPort;align=center;verticalAlign=top;spacing=10.0;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitLink id="-72f583ad:131105b55e2:-7d04" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7d0a" style="ExplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-72f583ad:131105b55e2:-7920"><mxGeometry as="geometry" height="80.0" width="80.0" x="573.0" y="830.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ExplicitLink><CommandControlLink id="-72f583ad:131105b55e2:-7d03" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cfc" target="-72f583ad:131105b55e2:-791f"><mxGeometry as="geometry" height="80.0" width="80.0" x="666.0" y="903.0"/></CommandControlLink><VoltageSensorBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7d02" interfaceFunctionName="VoltageSensor" ordering="24" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=0;flip=true;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="50.0" x="420.0" y="950.0"/></VoltageSensorBlock><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7d01" ordering="1" parent="-72f583ad:131105b55e2:-7d02" style="mirror=false;rotation=270;ImplicitOutputPort;flip=false;align=center;verticalAlign=top;spacing=10"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ExplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7d00" ordering="2" parent="-72f583ad:131105b55e2:-7d02" style="mirror=false;ExplicitOutputPort;rotation=0;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cff" ordering="1" parent="-72f583ad:131105b55e2:-7d02" style="mirror=false;ImplicitInputPort;rotation=0;flip=false;align=left;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ExplicitLink id="-72f583ad:131105b55e2:-7cfe" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7d00" style="ExplicitLink;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-72f583ad:131105b55e2:-7921"><mxGeometry as="geometry" relative="1"><Array as="points" scilabClass="ScilabList"><mxPoint x="1000.0" y="1010.0"/></Array></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="-72f583ad:131105b55e2:-7cfd" interfaceFunctionName="CLOCK_f" ordering="25" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="mirror=false;rotation=0;CLOCK_f;flip=false" value="CLOCK_f"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="79.0"/><data column="1" line="0" realPart="-110.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ee1"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ee1"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="00"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-4"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7edd"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7edd"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="252.71065999999996"/><data column="1" line="0" realPart="-292.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ed8"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ed8"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="338.0"/><data column="0" line="2" realPart="263.37732666666665"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-556.0"/><data column="0" line="2" realPart="-296.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="264.71065999999996"/><data column="0" line="1" realPart="139.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-280.0"/><data column="0" line="1" realPart="-66.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="266.0439933333333"/><data column="0" line="1" realPart="443.71000000000004"/><data column="0" line="2" realPart="403.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-296.0"/><data column="0" line="1" realPart="-314.0"/><data column="0" line="2" realPart="-314.0"/><data column="0" line="3" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="1059.50029" y="960.14363"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cfc" ordering="1" parent="-72f583ad:131105b55e2:-7cfd" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><GroundBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7cfb" interfaceFunctionName="Ground" ordering="26" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="200.0" y="1080.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cfa" ordering="1" parent="-72f583ad:131105b55e2:-7cfb" style="ImplicitInputPort;align=center;rotation=90;flip=false;mirror=false;verticalAlign=top;spacing=10"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7cf9" interfaceFunctionName="Inductor" ordering="27" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0039788735"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0039788735"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0039788735"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="50.0" x="490.0" y="840.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cf8" ordering="1" parent="-72f583ad:131105b55e2:-7cf9" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cf7" ordering="1" parent="-72f583ad:131105b55e2:-7cf9" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7cf6" interfaceFunctionName="Resistor" ordering="28" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.744"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.744"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.744"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="916.0" y="800.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cf5" ordering="1" parent="-72f583ad:131105b55e2:-7cf6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cf4" ordering="1" parent="-72f583ad:131105b55e2:-7cf6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><TextBlock id="-72f583ad:131105b55e2:-7cf3" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Generator 1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator 1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator 1"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="350.0" y="710.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7cf2" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;flip=false;mirror=false" value="Generator 2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator 2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator 2"/></ScilabString><mxGeometry as="geometry" height="20.0" width="30.0" x="370.0" y="890.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7cf1" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.5"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.5"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.5"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="500.0" y="710.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7cf0" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j2.5"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j2.5"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j2.5"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="490.0" y="890.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7cef" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.0"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.0"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.0"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="780.0" y="770.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7cee" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="(0.744 + j0.99)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="(0.744 + j0.99)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="(0.744 + j0.99)"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="960.0" y="770.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7ced" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.6"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.6"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.6"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="1140.0" y="770.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7cec" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="(0.93 + j0.55)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="(0.93 + j0.55)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="(0.93 + j0.55)"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="1290.0" y="770.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7ceb" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=15;fontColor=#E3301E;flip=false;mirror=false" value="F"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="F"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="F"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="1470.0" y="790.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7cea" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#292AFE;flip=false;mirror=false" value="Phase Y Voltage"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase Y Voltage"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase Y Voltage"/></ScilabString><mxGeometry as="geometry" height="20.0" width="200.0" x="350.0" y="1000.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7ce9" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#292AFE;flip=false;mirror=false" value="Phase Y Fault Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase Y Fault Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase Y Fault Current"/></ScilabString><mxGeometry as="geometry" height="20.0" width="200.0" x="650.0" y="1240.0"/></TextBlock><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7ce8" interfaceFunctionName="Inductor" ordering="29" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0031512678"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0031512678"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0031512678"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="996.0" y="800.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ce7" ordering="1" parent="-72f583ad:131105b55e2:-7ce8" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ce6" ordering="1" parent="-72f583ad:131105b55e2:-7ce8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7ce5" interfaceFunctionName="Inductor" ordering="30" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0050929581"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0050929581"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0050929581"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="1136.0" y="800.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ce4" ordering="1" parent="-72f583ad:131105b55e2:-7ce5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ce3" ordering="1" parent="-72f583ad:131105b55e2:-7ce5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7ce2" interfaceFunctionName="Resistor" ordering="31" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.93"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.93"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.93"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="1246.0" y="800.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ce1" ordering="1" parent="-72f583ad:131105b55e2:-7ce2" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ce0" ordering="1" parent="-72f583ad:131105b55e2:-7ce2" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7cdf" interfaceFunctionName="Switch" ordering="32" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.000001"/><data column="0" line="1" value="100000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-6"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="1430.0" y="810.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cde" ordering="1" parent="-72f583ad:131105b55e2:-7cdf" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cdd" ordering="2" parent="-72f583ad:131105b55e2:-7cdf" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cdc" ordering="1" parent="-72f583ad:131105b55e2:-7cdf" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7cd9" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cd6" target="-72f583ad:131105b55e2:-7cde"><mxGeometry as="geometry" x="10.0" y="590.0"><mxPoint as="sourcePoint" x="1426.0" y="820.0"/><mxPoint as="targetPoint" x="1380.0" y="820.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7cd8" interfaceFunctionName="Inductor" ordering="33" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0017507043"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0017507043"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0017507043"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="1326.0" y="800.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cd7" ordering="1" parent="-72f583ad:131105b55e2:-7cd8" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cd6" ordering="1" parent="-72f583ad:131105b55e2:-7cd8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><SplitBlock id="-72f583ad:131105b55e2:-7cd5" ordering="34" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="597.0" y="817.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cd4" ordering="1" parent="-72f583ad:131105b55e2:-7cd5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cd3" ordering="1" parent="-72f583ad:131105b55e2:-7cd5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cd2" ordering="2" parent="-72f583ad:131105b55e2:-7cd5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7cd1" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7d0d" target="-72f583ad:131105b55e2:-7cd3"><mxGeometry as="geometry" x="10.0" y="590.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="600.0" y="760.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7cd0" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cd2" target="-72f583ad:131105b55e2:-7cce"><mxGeometry as="geometry" x="10.0" y="590.0"><mxPoint as="sourcePoint" x="772.0" y="820.0"/><mxPoint as="targetPoint" x="600.0" y="820.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7ccf" interfaceFunctionName="Inductor" ordering="35" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0031830988"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0031830988"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="776.0" y="800.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7cce" ordering="1" parent="-72f583ad:131105b55e2:-7ccf" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ccd" ordering="1" parent="-72f583ad:131105b55e2:-7ccf" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7ccb" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7ccd" target="-72f583ad:131105b55e2:-7cf4"><mxGeometry as="geometry" x="506.0" y="660.0"><mxPoint as="sourcePoint" x="830.0" y="820.0"/><mxPoint as="targetPoint" x="916.0" y="820.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7cca" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cf5" target="-72f583ad:131105b55e2:-7ce7"><mxGeometry as="geometry" x="506.0" y="660.0"><mxPoint as="sourcePoint" x="960.0" y="820.0"/><mxPoint as="targetPoint" x="996.0" y="820.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7cc9" interfaceFunctionName="SineVoltage" ordering="36" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="2.094395102"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="2.094395102"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.094395102"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="360.0" y="730.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7af9" ordering="1" parent="-72f583ad:131105b55e2:-7cc9" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7afa" ordering="1" parent="-72f583ad:131105b55e2:-7cc9" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7cc6" interfaceFunctionName="SineVoltage" ordering="37" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="2.094395102"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="2.094395102"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.094395102"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="350.0" y="830.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7afd" ordering="1" parent="-72f583ad:131105b55e2:-7cc6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7afe" ordering="1" parent="-72f583ad:131105b55e2:-7cc6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><ImplicitLink id="-72f583ad:131105b55e2:-7cc3" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7af9" target="-72f583ad:131105b55e2:-7d0e"><mxGeometry as="geometry" x="10.0" y="590.0"><mxPoint as="sourcePoint" x="414.0" y="760.0"/><mxPoint as="targetPoint" x="480.0" y="760.0"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7cc1" ordering="38" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="217.0" y="857.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cc0" ordering="1" parent="-72f583ad:131105b55e2:-7cc1" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cbf" ordering="1" parent="-72f583ad:131105b55e2:-7cc1" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cbe" ordering="2" parent="-72f583ad:131105b55e2:-7cc1" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7cbd" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cbf" target="-72f583ad:131105b55e2:-7afa"><mxGeometry as="geometry" x="10.0" y="590.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="220.0" y="760.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7cbc" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cbe" target="-72f583ad:131105b55e2:-7afe"><mxGeometry as="geometry" x="10.0" y="590.0"><mxPoint as="sourcePoint" x="346.0" y="860.0"/><mxPoint as="targetPoint" x="220.0" y="860.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7cbb" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cf7" target="-72f583ad:131105b55e2:-7cd4"><mxGeometry as="geometry" x="10.0" y="590.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="600.0" y="860.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7cba" ordering="39" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="217.0" y="967.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cb9" ordering="1" parent="-72f583ad:131105b55e2:-7cba" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cb8" ordering="1" parent="-72f583ad:131105b55e2:-7cba" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cb7" ordering="2" parent="-72f583ad:131105b55e2:-7cba" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7cb6" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cc0" target="-72f583ad:131105b55e2:-7cb9"><mxGeometry as="geometry" x="10.0" y="590.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="220.0" y="960.0"/><mxPoint x="220.0" y="870.0"/><mxPoint x="220.0" y="970.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7cb5" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cb8" target="-72f583ad:131105b55e2:-7cff"><mxGeometry as="geometry" x="10.0" y="590.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7cb4" ordering="40" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="217.0" y="1047.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cb3" ordering="1" parent="-72f583ad:131105b55e2:-7cb4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cb2" ordering="1" parent="-72f583ad:131105b55e2:-7cb4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7cb1" ordering="2" parent="-72f583ad:131105b55e2:-7cb4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7cb0" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cb7" target="-72f583ad:131105b55e2:-7cb3"><mxGeometry as="geometry" x="10.0" y="590.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7caf" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cb2" target="-72f583ad:131105b55e2:-7cfa"><mxGeometry as="geometry" x="10.0" y="590.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="220.0" y="1050.0"/><mxPoint x="220.0" y="1060.0"/><mxPoint x="220.0" y="1060.0"/><mxPoint x="220.0" y="1080.0"/><mxPoint x="220.0" y="1080.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7cae" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cb1" target="-72f583ad:131105b55e2:-7d09"><mxGeometry as="geometry" x="10.0" y="590.0"><mxPoint as="sourcePoint" x="726.0" y="1210.0"/><mxPoint as="targetPoint" x="220.84337349397592" y="1047.8313253012047"/><Array as="points" scilabClass="ScilabList"><mxPoint x="588.3132530120482" y="1047.8313253012047"/><mxPoint x="588.3132530120482" y="1210.4819277108434"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7cad" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7cdc" target="-72f583ad:131105b55e2:-7d0b"><mxGeometry as="geometry" x="10.0" y="590.0"><mxPoint as="sourcePoint" x="774.0" y="1200.0"/><mxPoint as="targetPoint" x="1471.5384615384614" y="828.4615384615386"/><Array as="points" scilabClass="ScilabList"><mxPoint x="1502.3076923076922" y="828.4615384615386"/><mxPoint x="1502.3076923076922" y="1197.6923076923076"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7bdf" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bb3" target="-72f583ad:131105b55e2:-7bb1"><mxGeometry as="geometry" x="2166.0" y="400.0"><mxPoint as="sourcePoint" x="2710.0" y="560.0"/><mxPoint as="targetPoint" x="2796.0" y="560.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7bde" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bb0" target="-72f583ad:131105b55e2:-7bad"><mxGeometry as="geometry" x="2166.0" y="400.0"><mxPoint as="sourcePoint" x="2850.0" y="560.0"/><mxPoint as="targetPoint" x="2906.0" y="560.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7bdd" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bae" target="-72f583ad:131105b55e2:-7ba4"><mxGeometry as="geometry" x="2166.0" y="400.0"><mxPoint as="sourcePoint" x="2950.0" y="560.0"/><mxPoint as="targetPoint" x="2986.0" y="560.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bdc" interfaceFunctionName="Inductor" ordering="41" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false;shadow=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0047746482"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0047746482"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="2150.0" y="480.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bdb" ordering="1" parent="-72f583ad:131105b55e2:-7bdc" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><mxCell connectable="0" id="-72f583ad:131105b55e2:-7bdc#identifier" parent="-72f583ad:131105b55e2:-7bdc" style="noLabel=0;opacity=0;" vertex="1"><mxGeometry as="geometry" relative="1" x="0.5" y="1.1"/></mxCell><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bda" ordering="1" parent="-72f583ad:131105b55e2:-7bdc" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bd9" interfaceFunctionName="CurrentSensor" ordering="42" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="mirror=false;CurrentSensor;rotation=0;flip=false" value="CurrentSensor"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="2390.0" y="930.0"/></BasicBlock><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bd8" ordering="1" parent="-72f583ad:131105b55e2:-7bd9" style="mirror=false;rotation=0;ImplicitOutputPort;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="6.0"/></ImplicitOutputPort><ExplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bd7" ordering="2" parent="-72f583ad:131105b55e2:-7bd9" style="mirror=false;ExplicitOutputPort;rotation=0;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="26.0"/></ExplicitOutputPort><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bd6" ordering="1" parent="-72f583ad:131105b55e2:-7bd9" style="mirror=false;rotation=0;ImplicitInputPort;flip=false;align=left;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bd5" interfaceFunctionName="CMSCOPE" ordering="43" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="mirror=false;CMSCOPE;rotation=0;flip=false" value="<html><body> MScope </body></html>"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="3"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-2 -0.5"/><data column="0" line="6" value="2 0.5"/><data column="0" line="7" value=".2 .2"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="B phase: Voltage and Fault Current"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.2"/><data column="0" line="2" realPart="0.2"/><data column="0" line="3" realPart="-2.0"/><data column="0" line="4" realPart="2.0"/><data column="0" line="5" realPart="-0.5"/><data column="0" line="6" realPart="0.5"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="3.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="2720.0" y="770.0"/></BasicBlock><ControlPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-791a" ordering="1" parent="-72f583ad:131105b55e2:-7bd5" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-791c" ordering="1" parent="-72f583ad:131105b55e2:-7bd5" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-791b" ordering="2" parent="-72f583ad:131105b55e2:-7bd5" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ExplicitLink id="-72f583ad:131105b55e2:-7bd1" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bd7" style="ExplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-72f583ad:131105b55e2:-791b"><mxGeometry as="geometry" height="80.0" width="80.0" x="2233.0" y="570.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ExplicitLink><CommandControlLink id="-72f583ad:131105b55e2:-7bd0" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bc9" target="-72f583ad:131105b55e2:-791a"><mxGeometry as="geometry" height="80.0" width="80.0" x="2326.0" y="643.0"/></CommandControlLink><ExplicitLink id="-72f583ad:131105b55e2:-7bcb" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bcd" style="ExplicitLink;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-72f583ad:131105b55e2:-791c"><mxGeometry as="geometry" relative="1"><Array as="points" scilabClass="ScilabList"><mxPoint x="2660.0" y="750.0"/></Array></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="-72f583ad:131105b55e2:-7bca" interfaceFunctionName="CLOCK_f" ordering="44" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="mirror=false;rotation=0;CLOCK_f;flip=false" value="CLOCK_f"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="79.0"/><data column="1" line="0" realPart="-110.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ee1"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ee1"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="00"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-4"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7edd"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7edd"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="252.71065999999996"/><data column="1" line="0" realPart="-292.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ed8"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-72f583ad:131105b55e2:-7ed8"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="338.0"/><data column="0" line="2" realPart="263.37732666666665"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-556.0"/><data column="0" line="2" realPart="-296.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="264.71065999999996"/><data column="0" line="1" realPart="139.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-280.0"/><data column="0" line="1" realPart="-66.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="266.0439933333333"/><data column="0" line="1" realPart="443.71000000000004"/><data column="0" line="2" realPart="403.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-296.0"/><data column="0" line="1" realPart="-314.0"/><data column="0" line="2" realPart="-314.0"/><data column="0" line="3" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="2719.50029" y="700.14363"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7bc9" ordering="1" parent="-72f583ad:131105b55e2:-7bca" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><GroundBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bc8" interfaceFunctionName="Ground" ordering="45" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="1860.0" y="820.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bc7" ordering="1" parent="-72f583ad:131105b55e2:-7bc8" style="ImplicitInputPort;align=center;rotation=90;flip=false;mirror=false;verticalAlign=top;spacing=10"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bc6" interfaceFunctionName="Inductor" ordering="46" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0039788735"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0039788735"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0039788735"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="50.0" x="2150.0" y="580.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bc5" ordering="1" parent="-72f583ad:131105b55e2:-7bc6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bc4" ordering="1" parent="-72f583ad:131105b55e2:-7bc6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bc3" interfaceFunctionName="Resistor" ordering="47" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.744"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.744"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.744"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="2576.0" y="540.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bc2" ordering="1" parent="-72f583ad:131105b55e2:-7bc3" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bc1" ordering="1" parent="-72f583ad:131105b55e2:-7bc3" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><TextBlock id="-72f583ad:131105b55e2:-7bc0" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Generator 1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator 1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator 1"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="2010.0" y="450.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bbf" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;flip=false;mirror=false" value="Generator 2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator 2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator 2"/></ScilabString><mxGeometry as="geometry" height="20.0" width="30.0" x="2030.0" y="630.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bbe" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.5"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.5"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.5"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="2160.0" y="450.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bbd" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j2.5"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j2.5"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j2.5"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="2150.0" y="630.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bbc" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.0"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.0"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.0"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="2440.0" y="510.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bbb" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="(0.744 + j0.99)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="(0.744 + j0.99)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="(0.744 + j0.99)"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="2620.0" y="510.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bba" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j1.6"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j1.6"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j1.6"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="2800.0" y="510.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bb9" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="(0.93 + j0.55)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="(0.93 + j0.55)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="(0.93 + j0.55)"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="2950.0" y="510.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bb8" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=15;fontColor=#E3301E;flip=false;mirror=false" value="F"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="F"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="F"/></ScilabString><mxGeometry as="geometry" height="20.0" width="40.0" x="3130.0" y="530.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bb7" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#292AFE;flip=false;mirror=false" value="Phase B Voltage"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase B Voltage"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase B Voltage"/></ScilabString><mxGeometry as="geometry" height="20.0" width="200.0" x="2020.0" y="740.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7bb6" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#292AFE;flip=false;mirror=false" value="Phase B Fault Current"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase B Fault Current"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase B Fault Current"/></ScilabString><mxGeometry as="geometry" height="20.0" width="200.0" x="2310.0" y="990.0"/></TextBlock><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bb5" interfaceFunctionName="Inductor" ordering="48" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0031512678"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0031512678"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0031512678"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="2656.0" y="540.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bb4" ordering="1" parent="-72f583ad:131105b55e2:-7bb5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bb3" ordering="1" parent="-72f583ad:131105b55e2:-7bb5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bb2" interfaceFunctionName="Inductor" ordering="49" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0050929581"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0050929581"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0050929581"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="2796.0" y="540.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bb1" ordering="1" parent="-72f583ad:131105b55e2:-7bb2" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bb0" ordering="1" parent="-72f583ad:131105b55e2:-7bb2" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7baf" interfaceFunctionName="Resistor" ordering="50" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.93"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.93"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.93"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="2906.0" y="540.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bae" ordering="1" parent="-72f583ad:131105b55e2:-7baf" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bad" ordering="1" parent="-72f583ad:131105b55e2:-7baf" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bac" interfaceFunctionName="Switch" ordering="51" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.000001"/><data column="0" line="1" value="100000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-6"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="3090.0" y="550.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bab" ordering="1" parent="-72f583ad:131105b55e2:-7bac" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7baa" ordering="2" parent="-72f583ad:131105b55e2:-7bac" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ba9" ordering="1" parent="-72f583ad:131105b55e2:-7bac" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7ba6" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7ba3" target="-72f583ad:131105b55e2:-7bab"><mxGeometry as="geometry" x="1670.0" y="330.0"><mxPoint as="sourcePoint" x="3086.0" y="560.0"/><mxPoint as="targetPoint" x="3040.0" y="560.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7ba5" interfaceFunctionName="Inductor" ordering="52" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0017507043"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0017507043"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0017507043"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="2986.0" y="540.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ba4" ordering="1" parent="-72f583ad:131105b55e2:-7ba5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7ba3" ordering="1" parent="-72f583ad:131105b55e2:-7ba5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><SplitBlock id="-72f583ad:131105b55e2:-7ba2" ordering="53" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="2257.0" y="557.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7ba1" ordering="1" parent="-72f583ad:131105b55e2:-7ba2" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7ba0" ordering="1" parent="-72f583ad:131105b55e2:-7ba2" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b9f" ordering="2" parent="-72f583ad:131105b55e2:-7ba2" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7b9e" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bda" target="-72f583ad:131105b55e2:-7ba0"><mxGeometry as="geometry" x="1670.0" y="330.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="2260.0" y="500.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b9d" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b9f" target="-72f583ad:131105b55e2:-7b9b"><mxGeometry as="geometry" x="1670.0" y="330.0"><mxPoint as="sourcePoint" x="2432.0" y="560.0"/><mxPoint as="targetPoint" x="2260.0" y="560.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7b9c" interfaceFunctionName="Inductor" ordering="54" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="mirror=false;Inductor;flip=false" value="Inductor"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.0031830988"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0031830988"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="50.0" width="50.0" x="2436.0" y="540.0"/></BasicBlock><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7b9b" ordering="1" parent="-72f583ad:131105b55e2:-7b9c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7b9a" ordering="1" parent="-72f583ad:131105b55e2:-7b9c" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7b98" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b9a" target="-72f583ad:131105b55e2:-7bc1"><mxGeometry as="geometry" x="2166.0" y="400.0"><mxPoint as="sourcePoint" x="2490.0" y="560.0"/><mxPoint as="targetPoint" x="2576.0" y="560.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b97" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bc2" target="-72f583ad:131105b55e2:-7bb4"><mxGeometry as="geometry" x="2166.0" y="400.0"><mxPoint as="sourcePoint" x="2620.0" y="560.0"/><mxPoint as="targetPoint" x="2656.0" y="560.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7b96" interfaceFunctionName="SineVoltage" ordering="55" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="4.188790205"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="4.188790205"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.188790205"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="2020.0" y="470.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7af5" ordering="1" parent="-72f583ad:131105b55e2:-7b96" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7af6" ordering="1" parent="-72f583ad:131105b55e2:-7b96" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7b93" interfaceFunctionName="SineVoltage" ordering="56" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="4.188790205"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="4.188790205"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.188790205"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="2010.0" y="570.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7af1" ordering="1" parent="-72f583ad:131105b55e2:-7b93" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7af2" ordering="1" parent="-72f583ad:131105b55e2:-7b93" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><ImplicitLink id="-72f583ad:131105b55e2:-7b90" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7af5" target="-72f583ad:131105b55e2:-7bdb"><mxGeometry as="geometry" x="1670.0" y="330.0"><mxPoint as="sourcePoint" x="2074.0" y="500.0"/><mxPoint as="targetPoint" x="2140.0" y="500.0"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7b8e" ordering="57" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="1877.0" y="597.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b8d" ordering="1" parent="-72f583ad:131105b55e2:-7b8e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b8c" ordering="1" parent="-72f583ad:131105b55e2:-7b8e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b8b" ordering="2" parent="-72f583ad:131105b55e2:-7b8e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7b8a" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b8c" target="-72f583ad:131105b55e2:-7af6"><mxGeometry as="geometry" x="1670.0" y="330.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="1880.0" y="500.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b89" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b8b" target="-72f583ad:131105b55e2:-7af2"><mxGeometry as="geometry" x="1670.0" y="330.0"><mxPoint as="sourcePoint" x="2006.0" y="600.0"/><mxPoint as="targetPoint" x="1880.0" y="600.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b88" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bc4" target="-72f583ad:131105b55e2:-7ba1"><mxGeometry as="geometry" x="1670.0" y="330.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="2260.0" y="600.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7b87" ordering="58" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="1877.0" y="707.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b86" ordering="1" parent="-72f583ad:131105b55e2:-7b87" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b85" ordering="1" parent="-72f583ad:131105b55e2:-7b87" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b84" ordering="2" parent="-72f583ad:131105b55e2:-7b87" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7b83" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b8d" target="-72f583ad:131105b55e2:-7b86"><mxGeometry as="geometry" x="1670.0" y="330.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="1880.0" y="700.0"/><mxPoint x="1880.0" y="610.0"/><mxPoint x="1880.0" y="710.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b82" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b85" target="-72f583ad:131105b55e2:-7bcc"><mxGeometry as="geometry" x="1670.0" y="330.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7b81" ordering="59" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="1877.0" y="787.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b80" ordering="1" parent="-72f583ad:131105b55e2:-7b81" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b7f" ordering="1" parent="-72f583ad:131105b55e2:-7b81" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7b7e" ordering="2" parent="-72f583ad:131105b55e2:-7b81" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7b7d" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b84" target="-72f583ad:131105b55e2:-7b80"><mxGeometry as="geometry" x="1670.0" y="330.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b7c" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b7f" target="-72f583ad:131105b55e2:-7bc7"><mxGeometry as="geometry" x="1670.0" y="330.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="1880.0" y="790.0"/><mxPoint x="1880.0" y="800.0"/><mxPoint x="1880.0" y="800.0"/><mxPoint x="1880.0" y="820.0"/><mxPoint x="1880.0" y="820.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b7b" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7b7e" target="-72f583ad:131105b55e2:-7bd6"><mxGeometry as="geometry" x="1670.0" y="330.0"><mxPoint as="sourcePoint" x="2386.0" y="950.0000000000001"/><mxPoint as="targetPoint" x="1880.8433734939758" y="787.8313253012049"/><Array as="points" scilabClass="ScilabList"><mxPoint x="2248.3132530120483" y="787.8313253012049"/><mxPoint x="2248.3132530120483" y="950.4819277108434"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7b7a" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7ba9" target="-72f583ad:131105b55e2:-7bd8"><mxGeometry as="geometry" x="1670.0" y="330.0"><mxPoint as="sourcePoint" x="2434.0" y="940.0000000000001"/><mxPoint as="targetPoint" x="3131.5384615384614" y="568.4615384615385"/><Array as="points" scilabClass="ScilabList"><mxPoint x="3162.3076923076924" y="568.4615384615385"/><mxPoint x="3162.3076923076924" y="937.6923076923076"/></Array></mxGeometry></ImplicitLink><VoltageSensorBlock dependsOnU="1" id="-72f583ad:131105b55e2:-7bcf" interfaceFunctionName="VoltageSensor" ordering="60" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=0;flip=true;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="50.0" x="2080.0" y="690.0"/></VoltageSensorBlock><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bce" ordering="1" parent="-72f583ad:131105b55e2:-7bcf" style="mirror=false;rotation=270;ImplicitOutputPort;flip=false;align=center;verticalAlign=top;spacing=10"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ExplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bcd" ordering="2" parent="-72f583ad:131105b55e2:-7bcf" style="mirror=false;ExplicitOutputPort;rotation=0;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-72f583ad:131105b55e2:-7bcc" ordering="1" parent="-72f583ad:131105b55e2:-7bcf" style="mirror=false;ImplicitInputPort;rotation=0;flip=false;align=left;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><VoltageSensorBlock dependsOnU="1" id="-62268d13:130f6b46d8a:-7e8a" interfaceFunctionName="VoltageSensor" ordering="61" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=0;flip=true;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="50.0" x="420.0" y="360.0"/></VoltageSensorBlock><ImplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7e87" ordering="1" parent="-62268d13:130f6b46d8a:-7e8a" style="mirror=false;rotation=270;ImplicitOutputPort;flip=false;align=center;verticalAlign=top;spacing=10"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ExplicitOutputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7e89" ordering="2" parent="-62268d13:130f6b46d8a:-7e8a" style="mirror=false;ExplicitOutputPort;rotation=0;flip=false;align=right;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataLines="1" dataType="REAL_MATRIX" id="-62268d13:130f6b46d8a:-7e88" ordering="1" parent="-62268d13:130f6b46d8a:-7e8a" style="mirror=false;ImplicitInputPort;rotation=0;flip=false;align=left;verticalAlign=middle;spacing=10"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><SplitBlock id="-72f583ad:131105b55e2:-7a65" ordering="62" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="437.0" y="267.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a64" ordering="1" parent="-72f583ad:131105b55e2:-7a65" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a63" ordering="1" parent="-72f583ad:131105b55e2:-7a65" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a62" ordering="2" parent="-72f583ad:131105b55e2:-7a65" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7a61" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7dcf" target="-72f583ad:131105b55e2:-7a64"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7a60" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7a63" target="-62268d13:130f6b46d8a:-7ee3"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="440.0" y="270.0"/><mxPoint x="440.0" y="270.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7a66" parent="-62268d13:130f6b46d8a:-7eeb" source="-62268d13:130f6b46d8a:-7e87" target="-72f583ad:131105b55e2:-7a62"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="440.0" y="356.0"/><mxPoint as="targetPoint" x="439.5061728395062" y="269.1358024691358"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7a5a" ordering="63" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="437.0" y="857.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a59" ordering="1" parent="-72f583ad:131105b55e2:-7a5a" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a58" ordering="1" parent="-72f583ad:131105b55e2:-7a5a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a57" ordering="2" parent="-72f583ad:131105b55e2:-7a5a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7a56" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7afd" target="-72f583ad:131105b55e2:-7a59"><mxGeometry as="geometry" x="40.0" y="-210.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7a55" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7a58" target="-72f583ad:131105b55e2:-7cf8"><mxGeometry as="geometry" x="40.0" y="-210.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7a5b" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7d01" target="-72f583ad:131105b55e2:-7a57"><mxGeometry as="geometry" x="40.0" y="-210.0"><mxPoint as="sourcePoint" x="440.0" y="946.0"/><mxPoint as="targetPoint" x="436.8253968253968" y="853.4920634920634"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7a3b" ordering="64" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="2097.0" y="597.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a3a" ordering="1" parent="-72f583ad:131105b55e2:-7a3b" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a39" ordering="1" parent="-72f583ad:131105b55e2:-7a3b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7a38" ordering="2" parent="-72f583ad:131105b55e2:-7a3b" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="-72f583ad:131105b55e2:-7a37" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7af1" target="-72f583ad:131105b55e2:-7a3a"><mxGeometry as="geometry" x="-190.0" y="190.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7a36" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7a39" target="-72f583ad:131105b55e2:-7bc5"><mxGeometry as="geometry" x="-190.0" y="190.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="2110.0" y="600.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-72f583ad:131105b55e2:-7a3c" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7bce" target="-72f583ad:131105b55e2:-7a38"><mxGeometry as="geometry" x="-190.0" y="190.0"><mxPoint as="sourcePoint" x="2100.0" y="686.0"/><mxPoint as="targetPoint" x="2097.878787878788" y="599.090909090909"/></mxGeometry></ImplicitLink><SplitBlock id="-72f583ad:131105b55e2:-7955" ordering="65" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="1697.0" y="327.0"/></SplitBlock><ExplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7954" ordering="1" parent="-72f583ad:131105b55e2:-7955" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ExplicitInputPort><ExplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7953" ordering="1" parent="-72f583ad:131105b55e2:-7955" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ExplicitOutputPort><ExplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-7952" ordering="2" parent="-72f583ad:131105b55e2:-7955" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ExplicitOutputPort><ExplicitLink id="-72f583ad:131105b55e2:-7950" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7953" target="3b7a3c23:13110576cee:-7f2f"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="1390.9090909090908" y="327.27272727272725"/><mxPoint x="1390.0" y="250.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-72f583ad:131105b55e2:-7956" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-7952" target="-72f583ad:131105b55e2:-7baa"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="3086.0" y="580.0"/><mxPoint as="targetPoint" x="1699.9999999999998" y="327.27272727272725"/><Array as="points" scilabClass="ScilabList"><mxPoint x="3063.6363636363635" y="336.3636363636363"/><mxPoint x="3060.0" y="580.0"/></Array></mxGeometry></ExplicitLink><SplitBlock id="-72f583ad:131105b55e2:-794e" ordering="66" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="1697.0" y="517.0"/></SplitBlock><ExplicitInputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-794d" ordering="1" parent="-72f583ad:131105b55e2:-794e" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ExplicitInputPort><ExplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-794c" ordering="1" parent="-72f583ad:131105b55e2:-794e" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ExplicitOutputPort><ExplicitOutputPort dataType="UNKNOW_TYPE" id="-72f583ad:131105b55e2:-794b" ordering="2" parent="-72f583ad:131105b55e2:-794e" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ExplicitOutputPort><ExplicitLink id="-72f583ad:131105b55e2:-794a" parent="-62268d13:130f6b46d8a:-7eeb" source="3b7a3c23:13110576cee:-7f33" target="-72f583ad:131105b55e2:-794d"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="1700.0" y="530.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-72f583ad:131105b55e2:-7949" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-794c" target="-72f583ad:131105b55e2:-7954"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ExplicitLink><ExplicitLink id="-72f583ad:131105b55e2:-794f" parent="-62268d13:130f6b46d8a:-7eeb" source="-72f583ad:131105b55e2:-794b" target="-72f583ad:131105b55e2:-7cdd"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="1426.0" y="840.0000000000001"/><mxPoint as="targetPoint" x="1701.6129032258066" y="516.1290322580645"/><Array as="points" scilabClass="ScilabList"><mxPoint x="1701.6129032258066" y="911.2903225806451"/><mxPoint x="1395.1612903225807" y="911.2903225806451"/><mxPoint x="1395.1612903225807" y="838.7096774193549"/></Array></mxGeometry></ExplicitLink><TextBlock id="-72f583ad:131105b55e2:-793e" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#E1212F;flip=false;mirror=false" value="Phase R Plot"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase R Plot"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase R Plot"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="1050.0" y="480.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-793c" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#E1212F;flip=false;mirror=false" value="Phase Y Plot"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase Y Plot"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase Y Plot"/></ScilabString><mxGeometry as="geometry" height="40.0" width="20.0" x="1070.0" y="1080.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7937" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=13;fontColor=#E1212F;flip=false;mirror=false" value="Phase B Plot"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Phase B Plot"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Phase B Plot"/></ScilabString><mxGeometry as="geometry" height="40.0" width="20.0" x="2740.0" y="820.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7933" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fillColor=#F3F0B7;fontStyle=1;fontSize=32;fontColor=#A72F2F;flip=false;mirror=false" value="R Phase"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="R Phase"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="R Phase"/></ScilabString><mxGeometry as="geometry" height="40.0" width="130.0" x="720.0" y="130.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7931" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fillColor=#F3F0B7;fontStyle=1;fontSize=32;fontColor=#A72F2F;flip=false;mirror=false" value="Y Phase"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Y Phase"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Y Phase"/></ScilabString><mxGeometry as="geometry" height="40.0" width="130.0" x="710.0" y="730.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-792e" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fillColor=#F3F0B7;fontStyle=1;fontSize=32;fontColor=#A72F2F;flip=false;mirror=false" value="B Phase"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="B Phase"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="B Phase"/></ScilabString><mxGeometry as="geometry" height="40.0" width="130.0" x="2380.0" y="450.0"/></TextBlock><TextBlock id="-72f583ad:131105b55e2:-7928" parent="-62268d13:130f6b46d8a:-7eeb" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=22;fontColor=#D72424;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="1590.0" y="550.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="-62268d13:130f6b46d8a:-7eeb" parent="-62268d13:130f6b46d8a:-7eea"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.1/result_example_9_1.txt b/Working_Examples/83/CH9/EX9.1/result_example_9_1.txt new file mode 100755 index 0000000..abf54ae --- /dev/null +++ b/Working_Examples/83/CH9/EX9.1/result_example_9_1.txt @@ -0,0 +1,12 @@ + + Reactance of G1= j1.5 pu + Reactance of G2= j1.2 pu + Reactance of T1= j1.0 pu + Reactance of T2= j1.6 pu + Overhead line impedance=(0.744 + j0.992) pu + Cable impedance= (0.930 + j0.551) pu + +Total impedance= 5.1 < 70.87 deg pu +Short circuit current= 1713 A +Voltage at 11kV bus=9.62 kV + diff --git a/Working_Examples/83/CH9/EX9.1/xcos_result_example_9_1_all_phases.jpg b/Working_Examples/83/CH9/EX9.1/xcos_result_example_9_1_all_phases.jpg Binary files differnew file mode 100755 index 0000000..00f2809 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.1/xcos_result_example_9_1_all_phases.jpg diff --git a/Working_Examples/83/CH9/EX9.2/example_9_2.sce b/Working_Examples/83/CH9/EX9.2/example_9_2.sce new file mode 100755 index 0000000..30758db --- /dev/null +++ b/Working_Examples/83/CH9/EX9.2/example_9_2.sce @@ -0,0 +1,48 @@ +//Chapter 9 +//Example 9.2 +//page 337 +//To calculate subtransient and momentary current +clear;clc; +mvab=25; +Gmva=25; +T1mva=25; T2mva=25; +Gkvb=11; //generator kV base +OHLkvb=66; //overhead line kV base +Mkvb=6.6; //motor kV base +Mmva=5; //motor mva + +XdG=%i*0.2; //Generator's subtransient reactance +XdM=%i*0.25; //Motor's subtransient reactance +XdM2=%i*0.3; //Motor's transient reactance +Xt1=%i*0.1; // step up transformer's reactance +Xt2=%i*0.1;//step down transformer's reactance +Xtl=%i*0.15 ;//trnasmission line's reactance + +//per unit calculation +XdM=(XdM*mvab)/Mmva ;//perunit impedance of each motor +printf('\nSubtransient reactance of each motor = j%0.2f pu\n',abs(XdM)); + +//(a)subtransient current in the fault +Isc=(3*(1/XdM))+(1/(XdG+Xt1+Xt2+Xtl)); +Ibase=(mvab*1000)/(sqrt(3)*Mkvb); +Isc=Isc*Ibase; +printf('\nSubtransient current in the fault =%0.1fA\n',abs(Isc)); + +//(b)subtransient current in the breaker B +IscB=(2*(1/XdM))+(1/(XdG+Xt1+Xt2+Xtl)); +IscB=IscB*Ibase; +printf('\nSubtransient current in breaker B=%0.1fA\n',abs(IscB)); + +//(c) to find the momentary current through breaker B +ImomB=1.6*IscB; +printf('\nMomentary current through the breaker B=%dA\n',abs(ImomB)); + +//(d) to compute current to be interrupted by breaker in 5 cycles +XdM2=(XdM2*mvab)/Mmva ;//perunit transient impedance of each motor +IscB=(2*(1/XdM2))+(1/(XdG+Xt1+Xt2+Xtl)); +IscB=IscB*Ibase; +ImomB=1.1*IscB; +printf('\nCurrent to be interrupted by breaker B in five cycles=%dA\n',abs(ImomB)); + + + diff --git a/Working_Examples/83/CH9/EX9.2/example_9_2.xcos b/Working_Examples/83/CH9/EX9.2/example_9_2.xcos new file mode 100755 index 0000000..8a219d2 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.2/example_9_2.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.5" title="example_9_2"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="63eb11b3:131137cfac5:-7fff"/><mxCell id="63eb11b3:131137cfac5:-8000" parent="63eb11b3:131137cfac5:-7fff"/><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fcd" interfaceFunctionName="Inductor" ordering="1" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031831"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1831E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1831E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="280.0" y="90.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7da9" ordering="1" parent="63eb11b3:131137cfac5:-7fcd" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7daa" ordering="1" parent="63eb11b3:131137cfac5:-7fcd" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fca" interfaceFunctionName="Inductor" ordering="2" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="90.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7da5" ordering="1" parent="63eb11b3:131137cfac5:-7fca" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7da6" ordering="1" parent="63eb11b3:131137cfac5:-7fca" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fc7" interfaceFunctionName="Inductor" ordering="3" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031831"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1831E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1831E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="460.0" y="90.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7da1" ordering="1" parent="63eb11b3:131137cfac5:-7fc7" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7da2" ordering="1" parent="63eb11b3:131137cfac5:-7fc7" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fc4" interfaceFunctionName="Inductor" ordering="4" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0035810"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.003581"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.003581"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="560.0" y="20.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7ee4" ordering="1" parent="63eb11b3:131137cfac5:-7fc4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7ee5" ordering="1" parent="63eb11b3:131137cfac5:-7fc4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fc1" interfaceFunctionName="Inductor" ordering="5" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0035810"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.003581"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.003581"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="560.0" y="90.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7ee0" ordering="1" parent="63eb11b3:131137cfac5:-7fc1" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7ee1" ordering="1" parent="63eb11b3:131137cfac5:-7fc1" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fbe" interfaceFunctionName="Inductor" ordering="6" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.0035810"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.003581"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.003581"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="560.0" y="170.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7edc" ordering="1" parent="63eb11b3:131137cfac5:-7fbe" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7edd" ordering="1" parent="63eb11b3:131137cfac5:-7fbe" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fbb" interfaceFunctionName="SineVoltage" ordering="7" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="680.0" y="10.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7f8f" ordering="1" parent="63eb11b3:131137cfac5:-7fbb" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7f90" ordering="1" parent="63eb11b3:131137cfac5:-7fbb" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fb8" interfaceFunctionName="SineVoltage" ordering="8" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="680.0" y="80.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7f8b" ordering="1" parent="63eb11b3:131137cfac5:-7fb8" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7f8c" ordering="1" parent="63eb11b3:131137cfac5:-7fb8" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fb5" interfaceFunctionName="SineVoltage" ordering="9" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="680.0" y="160.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7f87" ordering="1" parent="63eb11b3:131137cfac5:-7fb5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7f88" ordering="1" parent="63eb11b3:131137cfac5:-7fb5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><GroundBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7f80" interfaceFunctionName="Ground" ordering="10" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="10.0" y="500.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7f7f" ordering="1" parent="63eb11b3:131137cfac5:-7f80" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitLink id="63eb11b3:131137cfac5:-7f78" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7dad" target="63eb11b3:131137cfac5:-7daa"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="204.0" y="110.0"/><mxPoint as="targetPoint" x="280.0" y="110.0"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f77" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7da9" target="63eb11b3:131137cfac5:-7da6"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="324.0" y="110.0"/><mxPoint as="targetPoint" x="380.0" y="110.0"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f76" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7da5" target="63eb11b3:131137cfac5:-7da2"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="424.0" y="110.0"/><mxPoint as="targetPoint" x="460.0" y="110.0"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f74" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7ee0" target="63eb11b3:131137cfac5:-7f8c"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="604.0" y="110.0"/><mxPoint as="targetPoint" x="670.0" y="110.0"/></mxGeometry></ImplicitLink><SplitBlock id="63eb11b3:131137cfac5:-7f72" ordering="11" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="517.0" y="107.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f6f" ordering="2" parent="63eb11b3:131137cfac5:-7f72" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f71" ordering="1" parent="63eb11b3:131137cfac5:-7f72" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f70" ordering="1" parent="63eb11b3:131137cfac5:-7f72" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7f6d" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f70" target="63eb11b3:131137cfac5:-7ee1"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f73" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f6f" target="63eb11b3:131137cfac5:-7ee5"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="556.0" y="40.0"/><mxPoint as="targetPoint" x="520.0" y="110.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="520.0" y="40.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f60" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7ee4" target="63eb11b3:131137cfac5:-7f90"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="604.0" y="40.0"/><mxPoint as="targetPoint" x="675.2136752136753" y="42.73504273504274"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f5f" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7edc" target="63eb11b3:131137cfac5:-7f88"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="604.0" y="190.0"/><mxPoint as="targetPoint" x="675.2136752136753" y="188.03418803418805"/></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnU="1" id="63eb11b3:131137cfac5:-7f49" interfaceFunctionName="Switch" ordering="12" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.00001"/><data column="0" line="1" value="100000000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E8"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="490.0" y="380.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="7e049f10:13119e51e36:-7f33" ordering="1" parent="63eb11b3:131137cfac5:-7f49" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="7e049f10:13119e51e36:-7f34" ordering="2" parent="63eb11b3:131137cfac5:-7f49" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitInputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="7e049f10:13119e51e36:-7f35" ordering="1" parent="63eb11b3:131137cfac5:-7f49" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitInputPort><SplitBlock id="63eb11b3:131137cfac5:-7f1d" ordering="13" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="497.0" y="467.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f1a" ordering="2" parent="63eb11b3:131137cfac5:-7f1d" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f1c" ordering="1" parent="63eb11b3:131137cfac5:-7f1d" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f1b" ordering="1" parent="63eb11b3:131137cfac5:-7f1d" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7f18" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f1b" target="7e049f10:13119e51e36:-7f35"><mxGeometry as="geometry" x="3.0" y="170.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><SplitBlock id="63eb11b3:131137cfac5:-7f15" ordering="14" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="807.0" y="187.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f12" ordering="2" parent="63eb11b3:131137cfac5:-7f15" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f14" ordering="1" parent="63eb11b3:131137cfac5:-7f15" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f13" ordering="1" parent="63eb11b3:131137cfac5:-7f15" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7f11" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f87" target="63eb11b3:131137cfac5:-7f14"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f10" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f1a" target="63eb11b3:131137cfac5:-7f13"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="810.0" y="470.0"/><mxPoint x="811.965811965812" y="188.03418803418805"/></Array></mxGeometry></ImplicitLink><SplitBlock id="63eb11b3:131137cfac5:-7f0e" ordering="15" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="807.0" y="107.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f0b" ordering="2" parent="63eb11b3:131137cfac5:-7f0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f0d" ordering="1" parent="63eb11b3:131137cfac5:-7f0e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7f0c" ordering="1" parent="63eb11b3:131137cfac5:-7f0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7f0a" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f8b" target="63eb11b3:131137cfac5:-7f0d"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f09" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f12" target="63eb11b3:131137cfac5:-7f0c"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7f0f" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f8f" style="ImplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="63eb11b3:131137cfac5:-7f0b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="733.9999999999999" y="40.0"/><mxPoint as="targetPoint" x="811.965811965812" y="111.11111111111111"/><Array as="points" scilabClass="ScilabList"><mxPoint x="810.0" y="70.0"/></Array></mxGeometry></ImplicitLink><BasicBlock blockType="h" id="63eb11b3:131137cfac5:-7ed0" interfaceFunctionName="STEP_FUNCTION" ordering="16" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.002"/><data column="0" line="1" value="-5"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-5.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.002"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7dbd"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7dbd"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="148.571433"/><data column="1" line="0" realPart="-110.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7dba"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7dba"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="212.000003"/><data column="0" line="2" realPart="173.478395"/><data column="0" line="3" realPart="173.478395"/><data column="0" line="4" realPart="212.000003"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-278.39289999999994"/><data column="0" line="2" realPart="-278.39289999999994"/><data column="0" line="3" realPart="-188.69678"/><data column="0" line="4" realPart="-188.69678"/><data column="0" line="5" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="164.571433"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-100.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="450.0" y="560.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7d83" ordering="1" parent="63eb11b3:131137cfac5:-7ed0" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><VoltageSensorBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7e37" interfaceFunctionName="VoltageSensor" ordering="17" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="50.0" y="10.0"/></VoltageSensorBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7e34" ordering="1" parent="63eb11b3:131137cfac5:-7e37" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7e36" ordering="1" parent="63eb11b3:131137cfac5:-7e37" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7e35" ordering="2" parent="63eb11b3:131137cfac5:-7e37" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><SplitBlock id="63eb11b3:131137cfac5:-7e19" ordering="18" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="17.0" y="477.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7e16" ordering="2" parent="63eb11b3:131137cfac5:-7e19" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7e18" ordering="1" parent="63eb11b3:131137cfac5:-7e19" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7e17" ordering="1" parent="63eb11b3:131137cfac5:-7e19" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7e15" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7f7f" target="63eb11b3:131137cfac5:-7e18"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7e14" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7e17" style="ImplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="63eb11b3:131137cfac5:-7f1c"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><SplitBlock id="63eb11b3:131137cfac5:-7e0e" ordering="19" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="17.0" y="107.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7e0b" ordering="2" parent="63eb11b3:131137cfac5:-7e0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7e0d" ordering="1" parent="63eb11b3:131137cfac5:-7e0e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7e0c" ordering="1" parent="63eb11b3:131137cfac5:-7e0e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7e0a" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7e16" target="63eb11b3:131137cfac5:-7e0d"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7e09" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7e0c" target="63eb11b3:131137cfac5:-7fda"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="20.0" y="110.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7e0f" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7e0b" target="63eb11b3:131137cfac5:-7e34"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="46.0" y="30.000000000000004"/><mxPoint as="targetPoint" x="21.164021164021165" y="111.11111111111111"/><Array as="points" scilabClass="ScilabList"><mxPoint x="20.0" y="30.0"/></Array></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7df5" interfaceFunctionName="CMSCOPE" ordering="20" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-1.5 -3.5"/><data column="0" line="6" value="1.5 3.5"/><data column="0" line="7" value="0.5 0.5"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Gen Voltage and Fault Current"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.5"/><data column="0" line="2" realPart="0.5"/><data column="0" line="3" realPart="-1.5"/><data column="0" line="4" realPart="1.5"/><data column="0" line="5" realPart="-3.5"/><data column="0" line="6" realPart="3.5"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="240.0" y="260.0"/></BasicBlock><ControlPort dataType="UNKNOW_TYPE" id="75a50611:1311fa6af8e:-7d74" ordering="1" parent="63eb11b3:131137cfac5:-7df5" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75a50611:1311fa6af8e:-7d76" ordering="1" parent="63eb11b3:131137cfac5:-7df5" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75a50611:1311fa6af8e:-7d75" ordering="2" parent="63eb11b3:131137cfac5:-7df5" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ExplicitLink id="63eb11b3:131137cfac5:-7df1" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7e35" style="ExplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="75a50611:1311fa6af8e:-7d76"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="94.0" y="30.000000000000004"/><mxPoint as="targetPoint" x="231.48148148148147" y="268.5185185185185"/><Array as="points" scilabClass="ScilabList"/></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="63eb11b3:131137cfac5:-7dea" interfaceFunctionName="CLOCK_c" ordering="21" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="159.0"/><data column="1" line="0" realPart="-190.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7db2"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7db2"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7dae"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7dae"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="188.71066000000002"/><data column="1" line="0" realPart="-228.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="5.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7da9"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="75a50611:1311fa6af8e:-7da9"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="192.0"/><data column="0" line="2" realPart="200.71066000000002"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-292.0"/><data column="0" line="2" realPart="-216.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="199.37732666666668"/><data column="0" line="1" realPart="189.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-232.0"/><data column="0" line="1" realPart="-166.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="202.04399333333336"/><data column="0" line="1" realPart="242.70999999999998"/><data column="0" line="2" realPart="202.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-232.0"/><data column="0" line="1" realPart="-146.0"/><data column="0" line="2" realPart="-146.0"/><data column="0" line="3" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="240.0" y="160.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7de1" ordering="1" parent="63eb11b3:131137cfac5:-7dea" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><CommandControlLink id="63eb11b3:131137cfac5:-7de8" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7de1" target="75a50611:1311fa6af8e:-7d74"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="260.0" y="184.0"/><mxPoint as="targetPoint" x="259.25925925925924" y="249.99999999999997"/></mxGeometry></CommandControlLink><ImplicitLink id="63eb11b3:131137cfac5:-7dd7" parent="63eb11b3:131137cfac5:-8000" source="7e049f10:13119e51e36:-7f33" target="63eb11b3:131137cfac5:-7e89"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="520.0000000000001" y="294.0"/><mxPoint as="targetPoint" x="527.7777777777777" y="388.88888888888886"/></mxGeometry></ImplicitLink><BasicBlock angle="90" dependsOnU="1" id="63eb11b3:131137cfac5:-7e8a" interfaceFunctionName="CurrentSensor" ordering="22" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=90;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="500.0" y="240.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7e87" ordering="1" parent="63eb11b3:131137cfac5:-7e8a" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7e89" ordering="1" parent="63eb11b3:131137cfac5:-7e8a" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7e88" ordering="2" parent="63eb11b3:131137cfac5:-7e8a" style="ExplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitOutputPort><SplitBlock id="63eb11b3:131137cfac5:-7dc5" ordering="23" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="517.0" y="107.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7dc2" ordering="2" parent="63eb11b3:131137cfac5:-7dc5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7dc4" ordering="1" parent="63eb11b3:131137cfac5:-7dc5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7dc3" ordering="1" parent="63eb11b3:131137cfac5:-7dc5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7dc1" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7da1" target="63eb11b3:131137cfac5:-7dc4"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7dc0" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7dc3" target="63eb11b3:131137cfac5:-7f71"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="520.0" y="110.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="63eb11b3:131137cfac5:-7dba" ordering="24" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="517.0" y="187.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7db7" ordering="2" parent="63eb11b3:131137cfac5:-7dba" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7db9" ordering="1" parent="63eb11b3:131137cfac5:-7dba" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="63eb11b3:131137cfac5:-7db8" ordering="1" parent="63eb11b3:131137cfac5:-7dba" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitLink id="63eb11b3:131137cfac5:-7db6" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7dc2" target="63eb11b3:131137cfac5:-7db9"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7db5" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7db8" target="63eb11b3:131137cfac5:-7e87"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="63eb11b3:131137cfac5:-7dbb" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7db7" target="63eb11b3:131137cfac5:-7edd"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="556.0" y="190.0"/><mxPoint as="targetPoint" x="526.3157894736842" y="190.78947368421052"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fde" interfaceFunctionName="SineVoltage" ordering="25" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="40.0" y="80.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7fd9" ordering="1" parent="63eb11b3:131137cfac5:-7fde" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="50.0" y="26.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7fda" ordering="1" parent="63eb11b3:131137cfac5:-7fde" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ImplicitInputPort><SplitBlock id="7e049f10:13119e51e36:-7f2a" ordering="26" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="127.0" y="107.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="7e049f10:13119e51e36:-7f28" ordering="1" parent="7e049f10:13119e51e36:-7f2a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="7e049f10:13119e51e36:-7f27" ordering="2" parent="7e049f10:13119e51e36:-7f2a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="7e049f10:13119e51e36:-7f29" ordering="1" parent="7e049f10:13119e51e36:-7f2a" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="7e049f10:13119e51e36:-7f26" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7fd9" target="7e049f10:13119e51e36:-7f29"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="7e049f10:13119e51e36:-7f25" parent="63eb11b3:131137cfac5:-8000" source="7e049f10:13119e51e36:-7f28" target="63eb11b3:131137cfac5:-7dae"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="140.0" y="110.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="7e049f10:13119e51e36:-7f2b" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7e36" style="ImplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle" target="7e049f10:13119e51e36:-7f27"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="70.0" y="54.0"/><mxPoint as="targetPoint" x="130.0" y="110.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="130.0" y="80.0"/></Array></mxGeometry></ImplicitLink><ExplicitLink id="7e049f10:13119e51e36:-7f23" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7e88" target="75a50611:1311fa6af8e:-7d75"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="236.0" y="290.0"/><mxPoint as="targetPoint" x="530.0" y="280.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="530.0" y="340.0"/><mxPoint x="210.0" y="340.0"/><mxPoint x="210.0" y="290.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="7e049f10:13119e51e36:-7f1f" parent="63eb11b3:131137cfac5:-8000" source="63eb11b3:131137cfac5:-7d83" target="7e049f10:13119e51e36:-7f34"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="494.0" y="580.0"/><mxPoint as="targetPoint" x="520.0" y="430.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="520.0" y="580.0"/></Array></mxGeometry></ExplicitLink><BasicBlock dependsOnU="1" id="63eb11b3:131137cfac5:-7fd0" interfaceFunctionName="Inductor" ordering="27" parent="63eb11b3:131137cfac5:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00063662"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="6.3662E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.3662E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="180.0" y="90.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7dad" ordering="1" parent="63eb11b3:131137cfac5:-7fd0" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="63eb11b3:131137cfac5:-7dae" ordering="1" parent="63eb11b3:131137cfac5:-7fd0" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><TextBlock id="75a50611:1311fa6af8e:-7d9f" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="180.0" y="50.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d9c" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="280.0" y="50.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d9a" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="380.0" y="50.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d98" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="460.0" y="50.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d95" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.125"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.125"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.125"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="560.0" y="-20.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d92" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.125"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.125"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.125"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="560.0" y="60.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d90" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.125"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.125"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.125"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="560.0" y="140.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d8d" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="580.0" y="370.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d85" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Voltage and <br>Current Waveform"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Voltage and <br>Current Waveform"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Voltage and <br>Current Waveform"/></ScilabString><mxGeometry as="geometry" height="40.0" width="50.0" x="330.0" y="260.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d7e" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Generator"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="50.0" y="140.0"/></TextBlock><TextBlock id="75a50611:1311fa6af8e:-7d7a" parent="63eb11b3:131137cfac5:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Motors"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Motors"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Motors"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="750.0" y="70.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="63eb11b3:131137cfac5:-8000" parent="63eb11b3:131137cfac5:-7fff"/><mxPoint as="origin" y="-20.0"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.2/result_example_9_2.txt b/Working_Examples/83/CH9/EX9.2/result_example_9_2.txt new file mode 100755 index 0000000..68589cd --- /dev/null +++ b/Working_Examples/83/CH9/EX9.2/result_example_9_2.txt @@ -0,0 +1,12 @@ + + +Subtransient reactance of each motor = j1.25 pu + +Subtransient current in the fault =9224.9A + +Subtransient current in breaker B=7475.3A + +Momentary current through the breaker B=11960A + +Current to be interrupted by breaker B in five cycles=7581A + diff --git a/Working_Examples/83/CH9/EX9.2/xcos_result_example_9_2.jpeg b/Working_Examples/83/CH9/EX9.2/xcos_result_example_9_2.jpeg Binary files differnew file mode 100755 index 0000000..b742488 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.2/xcos_result_example_9_2.jpeg diff --git a/Working_Examples/83/CH9/EX9.3/example_9_3.sce b/Working_Examples/83/CH9/EX9.3/example_9_3.sce new file mode 100755 index 0000000..6a76530 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.3/example_9_3.sce @@ -0,0 +1,39 @@ +//Chapter 9 +//Example 9.3 +//page 340 +//To calculate subtransient current in Generator,Motor and fault +clear;clc; +mvab=25; +kvb=11; +Vo=10.6/kvb; //PU Prefault voltage +printf('\nPrefault Voltage = %0.4fpu\n',Vo); + +Load=15/mvab; //load PU with 0.8pf leading +Io=(Load/(Vo*0.8))*(cosd(36.9)+%i*sind(36.9)); //Prefault current +printf('\nPrefault current = %0.4f at %0.1f deg PU',abs(Io),atand(imag(Io)/real(Io))); + +Eg=Vo+(%i*0.45*Io); //voltage behind subtransient reactance(generator) +printf('\n\nVoltage behind subtransient reactance(Generator) = %0.4f+j%0.2f pu\n''',real(Eg),imag(Eg)); + +Em=Vo-(%i*0.15*Io); //voltage behind subtransient reactance(motor) +printf('\nVoltage behind subtransient reactance(Motor) = %0.4f-j%0.4f pu',real(Em),abs(imag(Em))); + +Ig=Eg/(%i*0.45); //under fault condition +Im=Em/(%i*0.15); //under fault condition +printf('\n\nUnder Faulted condition \n Ig""=%0.4f-j%0.4f pu',real(Ig),abs(imag(Ig))); +printf('\n Im""=%0.4f-j%0.4f pu',real(Im),abs(imag(Im))); +If=Ig+Im; //Current in fault +printf('\n\nCurrent in fault= -j%0.4f pu',abs(imag(If))); + +Ib=(mvab*1000/(sqrt(3)*11)); //Base current +//Actual Currents +printf("\n\nNow"); +Ig=Ig*Ib +Im=Im*Ib +If=If*Ib +printf('\nIg""= %0.1f-j%0.1f A',real(Ig),abs(imag(Ig))); +printf('\nIm""= %0.1f-j%0.1f A',real(Im),abs(imag(Im))); +printf('\nIf= -j%d A',abs(imag(If))); + + + diff --git a/Working_Examples/83/CH9/EX9.3/example_9_3.xcos b/Working_Examples/83/CH9/EX9.3/example_9_3.xcos new file mode 100755 index 0000000..9268ec9 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.3/example_9_3.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.5" title="example_9_3"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="-487ef5e3:131246c8237:-7fff"/><mxCell id="-487ef5e3:131246c8237:-8000" parent="-487ef5e3:131246c8237:-7fff"/><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7fd1" interfaceFunctionName="Inductor" ordering="1" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="150.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f6e" ordering="1" parent="-487ef5e3:131246c8237:-7fd1" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f6d" ordering="1" parent="-487ef5e3:131246c8237:-7fd1" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7fc5" interfaceFunctionName="Inductor" ordering="2" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="80.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f6a" ordering="1" parent="-487ef5e3:131246c8237:-7fc5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f69" ordering="1" parent="-487ef5e3:131246c8237:-7fc5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7fc2" interfaceFunctionName="Inductor" ordering="3" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="220.0" y="80.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f66" ordering="1" parent="-487ef5e3:131246c8237:-7fc2" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f65" ordering="1" parent="-487ef5e3:131246c8237:-7fc2" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7fbf" interfaceFunctionName="Inductor" ordering="4" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="80.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f62" ordering="1" parent="-487ef5e3:131246c8237:-7fbf" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f61" ordering="1" parent="-487ef5e3:131246c8237:-7fbf" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7fbc" interfaceFunctionName="Inductor" ordering="5" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="830.0" y="130.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f5e" ordering="1" parent="-487ef5e3:131246c8237:-7fbc" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f5d" ordering="1" parent="-487ef5e3:131246c8237:-7fbc" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7fb6" interfaceFunctionName="SineVoltage" ordering="6" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.467674249"/><data column="0" line="1" value="-0.09002305019"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.467674249"/><data column="0" line="1" realPart="-0.09002305019"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.467674249"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-0.09002305019"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="830.0" y="240.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f76" ordering="1" parent="-487ef5e3:131246c8237:-7fb6" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f75" ordering="1" parent="-487ef5e3:131246c8237:-7fb6" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitLink id="-487ef5e3:131246c8237:-7fb3" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f79" target="-487ef5e3:131246c8237:-7f6e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="100.0" y="236.0"/><mxPoint as="targetPoint" x="100.0" y="200.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7fb2" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f6d" target="-487ef5e3:131246c8237:-7f6a"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="100.0" y="146.0"/><mxPoint as="targetPoint" x="170.0" y="100.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="100.0" y="100.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7fb1" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f69" target="-487ef5e3:131246c8237:-7f66"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="214.0" y="100.0"/><mxPoint as="targetPoint" x="270.0" y="100.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7fb0" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f65" target="-487ef5e3:131246c8237:-7f62"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="314.0" y="100.0"/><mxPoint as="targetPoint" x="380.0" y="100.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7fae" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f75" target="-487ef5e3:131246c8237:-7f5e"><mxGeometry as="geometry" x="320.0"><mxPoint as="sourcePoint" x="850.0" y="174.0"/><mxPoint as="targetPoint" x="850.0" y="240.0"/></mxGeometry></ImplicitLink><GroundBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7fa7" interfaceFunctionName="Ground" ordering="7" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="80.0" y="410.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7fa6" ordering="1" parent="-487ef5e3:131246c8237:-7fa7" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-487ef5e3:131246c8237:-7fa4" ordering="8" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="97.0" y="357.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7fa2" ordering="1" parent="-487ef5e3:131246c8237:-7fa4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7fa1" ordering="2" parent="-487ef5e3:131246c8237:-7fa4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7fa3" ordering="1" parent="-487ef5e3:131246c8237:-7fa4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7fa0" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f7a" target="-487ef5e3:131246c8237:-7fa3"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7fa5" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7fa1" target="-487ef5e3:131246c8237:-7fa6"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="100.0" y="406.0"/><mxPoint as="targetPoint" x="100.0" y="360.0"/></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7f95" interfaceFunctionName="Switch" ordering="9" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.000001"/><data column="0" line="1" value="100000000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-6"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E8"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="720.0" y="263.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f5a" ordering="1" parent="-487ef5e3:131246c8237:-7f95" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f59" ordering="2" parent="-487ef5e3:131246c8237:-7f95" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f58" ordering="1" parent="-487ef5e3:131246c8237:-7f95" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="90" dependsOnU="1" id="-487ef5e3:131246c8237:-7f47" interfaceFunctionName="CurrentSensor" ordering="10" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=90;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="730.0" y="153.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f45" ordering="2" parent="-487ef5e3:131246c8237:-7f47" style="ExplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f44" ordering="1" parent="-487ef5e3:131246c8237:-7f47" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f46" ordering="1" parent="-487ef5e3:131246c8237:-7f47" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitOutputPort><ImplicitLink id="-487ef5e3:131246c8237:-7f38" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f58" target="-487ef5e3:131246c8237:-7f46"><mxGeometry as="geometry" x="290.0" y="3.0"><mxPoint as="sourcePoint" x="740.0" y="197.0"/><mxPoint as="targetPoint" x="740.0" y="253.0"/></mxGeometry></ImplicitLink><VoltageSensorBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7f2e" interfaceFunctionName="VoltageSensor" ordering="11" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=270;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="300.0" y="200.0"/></VoltageSensorBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f2c" ordering="2" parent="-487ef5e3:131246c8237:-7f2e" style="ExplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f2b" ordering="1" parent="-487ef5e3:131246c8237:-7f2e" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f2d" ordering="1" parent="-487ef5e3:131246c8237:-7f2e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><SplitBlock id="-487ef5e3:131246c8237:-7ef4" ordering="12" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="317.0" y="357.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ef2" ordering="1" parent="-487ef5e3:131246c8237:-7ef4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ef1" ordering="2" parent="-487ef5e3:131246c8237:-7ef4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ef3" ordering="1" parent="-487ef5e3:131246c8237:-7ef4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7ef0" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7fa2" target="-487ef5e3:131246c8237:-7ef3"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7ef5" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7ef1" target="-487ef5e3:131246c8237:-7f2b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="320.0" y="244.0"/><mxPoint as="targetPoint" x="320.0" y="360.0"/></mxGeometry></ImplicitLink><BasicBlock blockType="h" id="-487ef5e3:131246c8237:-7ee9" interfaceFunctionName="STEP_FUNCTION" ordering="13" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.255"/><data column="0" line="1" value="-3"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-3.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.255"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d2f"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d2f"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="108.57143300000001"/><data column="1" line="0" realPart="-70.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d2c"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d2c"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="116.00000299999998"/><data column="0" line="2" realPart="77.47839499999999"/><data column="0" line="3" realPart="77.47839499999999"/><data column="0" line="4" realPart="116.00000299999998"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-174.39289999999994"/><data column="0" line="2" realPart="-174.39289999999994"/><data column="0" line="3" realPart="-84.69677999999999"/><data column="0" line="4" realPart="-84.69677999999999"/><data column="0" line="5" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="124.57143300000001"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-60.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="700.0" y="413.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7d7d" ordering="1" parent="-487ef5e3:131246c8237:-7ee9" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ExplicitLink id="-487ef5e3:131246c8237:-7ee4" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7d7d" target="-487ef5e3:131246c8237:-7f59"><mxGeometry as="geometry" x="290.0" y="3.0"><mxPoint as="sourcePoint" x="744.0" y="433.0"/><mxPoint as="targetPoint" x="750.0" y="313.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="750.0" y="433.0"/></Array></mxGeometry></ExplicitLink><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7eda" interfaceFunctionName="CMSCOPE" ordering="14" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-1.5 -25"/><data column="0" line="6" value="1.5 25"/><data column="0" line="7" value="0.50 0.50 "/><data column="0" line="8" value="20"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Voltage and Current at the Fault"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.5"/><data column="0" line="2" realPart="0.5"/><data column="0" line="3" realPart="-1.5"/><data column="0" line="4" realPart="1.5"/><data column="0" line="5" realPart="-25.0"/><data column="0" line="6" realPart="25.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="20.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="260.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-9f15b34:131b8cd9210:-7d16" ordering="1" parent="-487ef5e3:131246c8237:-7eda" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ControlPort dataType="UNKNOW_TYPE" id="-9f15b34:131b8cd9210:-7d14" ordering="1" parent="-487ef5e3:131246c8237:-7eda" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-9f15b34:131b8cd9210:-7d15" ordering="2" parent="-487ef5e3:131246c8237:-7eda" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><SplitBlock id="-487ef5e3:131246c8237:-7ecb" ordering="15" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="727.0" y="357.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ec9" ordering="1" parent="-487ef5e3:131246c8237:-7ecb" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ec8" ordering="2" parent="-487ef5e3:131246c8237:-7ecb" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7eca" ordering="1" parent="-487ef5e3:131246c8237:-7ecb" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7ec7" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7ef2" target="-487ef5e3:131246c8237:-7eca"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7ec6" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7ec9" target="-487ef5e3:131246c8237:-7f5a"><mxGeometry as="geometry" x="290.0" y="3.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7ecc" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7ec8" target="-487ef5e3:131246c8237:-7f76"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="850.0" y="304.0"/><mxPoint as="targetPoint" x="440.0" y="360.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="850.0" y="360.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-7ec1" ordering="16" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="747.0" y="97.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ebf" ordering="1" parent="-487ef5e3:131246c8237:-7ec1" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ebe" ordering="2" parent="-487ef5e3:131246c8237:-7ec1" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7ec0" ordering="1" parent="-487ef5e3:131246c8237:-7ec1" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7ebc" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7ebf" target="-487ef5e3:131246c8237:-7f44"><mxGeometry as="geometry" x="290.0" y="3.0"><Array as="points" scilabClass="ScilabList"><mxPoint x="750.0" y="133.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7ec2" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f5d" target="-487ef5e3:131246c8237:-7ebe"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="850.0" y="126.0"/><mxPoint as="targetPoint" x="460.0" y="100.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="850.0" y="100.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-7e92" ordering="17" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="407.0" y="97.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7e90" ordering="1" parent="-487ef5e3:131246c8237:-7e92" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7e8f" ordering="2" parent="-487ef5e3:131246c8237:-7e92" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7e91" ordering="1" parent="-487ef5e3:131246c8237:-7e92" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7e8e" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f61" target="-487ef5e3:131246c8237:-7e91"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7e8d" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7e90" target="-487ef5e3:131246c8237:-7ec0"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="710.0" y="100.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7e93" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f2d" target="-487ef5e3:131246c8237:-7e8f"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="344.0" y="220.0"/><mxPoint as="targetPoint" x="410.0" y="100.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="410.0" y="220.0"/></Array></mxGeometry></ImplicitLink><BasicBlock blockType="h" id="-487ef5e3:131246c8237:-7e81" interfaceFunctionName="CLOCK_c" ordering="18" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="119.0"/><data column="1" line="0" realPart="-150.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d24"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d24"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d20"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d20"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="124.71066000000002"/><data column="1" line="0" realPart="-164.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d1b"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7d1b"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="106.0"/><data column="0" line="2" realPart="135.37732666666668"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-204.0"/><data column="0" line="2" realPart="-168.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="136.71066000000002"/><data column="0" line="1" realPart="149.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-152.0"/><data column="0" line="1" realPart="-126.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="138.04399333333336"/><data column="0" line="1" realPart="151.70999999999998"/><data column="0" line="2" realPart="111.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-168.0"/><data column="0" line="1" realPart="-58.0"/><data column="0" line="2" realPart="-58.0"/><data column="0" line="3" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="150.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7e74" ordering="1" parent="-487ef5e3:131246c8237:-7e81" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><CommandControlLink id="-487ef5e3:131246c8237:-7e7f" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7e74" target="-9f15b34:131b8cd9210:-7d14"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="560.0" y="194.0"/><mxPoint as="targetPoint" x="560.0" y="260.0"/></mxGeometry></CommandControlLink><ExplicitLink id="-487ef5e3:131246c8237:-7e7c" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f2c" target="-9f15b34:131b8cd9210:-7d16"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="320.0" y="196.0"/><mxPoint as="targetPoint" x="530.0" y="270.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="320.0" y="170.0"/><mxPoint x="480.0" y="170.0"/><mxPoint x="480.0" y="270.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-487ef5e3:131246c8237:-7e7b" parent="-487ef5e3:131246c8237:-8000" source="-487ef5e3:131246c8237:-7f45" target="-9f15b34:131b8cd9210:-7d15"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="760.0" y="197.0"/><mxPoint as="targetPoint" x="540.0" y="290.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="760.0" y="230.0"/><mxPoint x="620.0" y="230.0"/><mxPoint x="620.0" y="320.0"/><mxPoint x="480.0" y="320.0"/><mxPoint x="480.0" y="290.0"/></Array></mxGeometry></ExplicitLink><TextBlock id="-487ef5e3:131246c8237:-7da3" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="40.0" y="150.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7d9f" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="130.0" y="40.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7d9c" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="220.0" y="40.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7d99" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="40.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7d96" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="880.0" y="130.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7d92" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Eg&quot;"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Eg&quot;"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Eg&quot;"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="10.0" y="260.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7d8d" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="Em&quot;"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Em&quot;"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Em&quot;"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="910.0" y="260.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7cd3" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Voltage and <br>Current Waveform"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Voltage and <br>Current Waveform"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Voltage and <br>Current Waveform"/></ScilabString><mxGeometry as="geometry" height="40.0" width="50.0" x="550.0" y="300.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7cd0" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Generator"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generator"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generator"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="140.0" y="280.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7ccd" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Motor"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Motor"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Motor"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="870.0" y="290.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7cca" parent="-487ef5e3:131246c8237:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="700.0" y="450.0"/></TextBlock><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7fde" interfaceFunctionName="SineVoltage" ordering="19" parent="-487ef5e3:131246c8237:-8000" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.065751341"/><data column="0" line="1" value="0.3959797975"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.065751341"/><data column="0" line="1" realPart="0.3959797975"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.065751341"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.3959797975"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="80.0" y="240.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f7a" ordering="1" parent="-487ef5e3:131246c8237:-7fde" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7f79" ordering="1" parent="-487ef5e3:131246c8237:-7fde" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort></root></mxGraphModel><mxCell as="defaultParent" id="-487ef5e3:131246c8237:-8000" parent="-487ef5e3:131246c8237:-7fff"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.3/result_example_9_3.txt b/Working_Examples/83/CH9/EX9.3/result_example_9_3.txt new file mode 100755 index 0000000..9a89992 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.3/result_example_9_3.txt @@ -0,0 +1,22 @@ + + + +Prefault Voltage = 0.9636pu + +Prefault current = 0.7783 at 36.9 deg PU + +Voltage behind subtransient reactance(Generator) = 0.7533+j0.28 pu +' +Voltage behind subtransient reactance(Motor) = 1.0337-j0.0934 pu + +Under Faulted condition + Ig"=0.6224-j1.6741 pu + Im"=-0.6224-j6.8916 pu + +Current in fault= -j8.5657 pu + +Now +Ig"= 816.7-j2196.7 A +Im"= -816.7-j9042.8 A +If= -j11239 A + diff --git a/Working_Examples/83/CH9/EX9.3/xcos_result_example_9_3.jpeg b/Working_Examples/83/CH9/EX9.3/xcos_result_example_9_3.jpeg Binary files differnew file mode 100755 index 0000000..dac7410 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.3/xcos_result_example_9_3.jpeg diff --git a/Working_Examples/83/CH9/EX9.4/example_9_4.sce b/Working_Examples/83/CH9/EX9.4/example_9_4.sce new file mode 100755 index 0000000..21092fd --- /dev/null +++ b/Working_Examples/83/CH9/EX9.4/example_9_4.sce @@ -0,0 +1,35 @@ +//Chapter 9 +//Example 9.4 +//page 345 +//To calculate maximum MVA +clear;clc; +mvab=50; +kvb=6.6; +mvaA=40; +mvaB=50; +mvaC=25; +feeder_impedance=((0.06+%i*0.12)*mvab)/(kvb^2) + +Gen_A_reactance=(%i*0.1*mvab/mvaA); +Gen_B_reactance=(%i*0.1*mvab/mvaB); +Gen_C_reactance=(%i*0.1*mvab/mvaC); + +printf('\nGenerator A reactance = j%0.3f pu',abs(Gen_A_reactance)); +printf('\nGenerator B reactance = j%0.3f pu',abs(Gen_B_reactance)); +printf('\nGenerator C reactance = j%0.3f pu',abs(Gen_C_reactance)); + +Reactor_A_reactance=(%i*0.12*mvab/mvaA); +Reactor_B_reactance=(%i*0.12*mvab/mvaB); +Reactor_C_reactance=(%i*0.12*mvab/mvaC); + +printf('\nReactor A reactance = j%0.3f pu',abs(Reactor_A_reactance)); +printf('\nReactor B reactance = j%0.3f pu',abs(Reactor_B_reactance)); +printf('\nReactor C reactance = j%0.3f pu',abs(Reactor_C_reactance)); + +function resistance=parallel(r1,r2) +resistance=(r1*r2/(r1+r2)); +endfunction + +Z=(feeder_impedance)+parallel(%i*0.125,(%i*0.15 + parallel(%i*0.22,%i*0.44))); +scmva=(1/abs(Z))*mvab; +printf("\n\nSC MVA = %d MVA",scmva); diff --git a/Working_Examples/83/CH9/EX9.4/example_9_4.xcos b/Working_Examples/83/CH9/EX9.4/example_9_4.xcos new file mode 100755 index 0000000..c3f6e6e --- /dev/null +++ b/Working_Examples/83/CH9/EX9.4/example_9_4.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.5" title="example_9_4"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="-487ef5e3:131246c8237:-7cc7"/><mxCell id="-487ef5e3:131246c8237:-7cc8" parent="-487ef5e3:131246c8237:-7cc7"/><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7cb5" interfaceFunctionName="Inductor" ordering="1" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00039788735"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.9788735E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.9788735E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="750.0" y="153.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7aee" ordering="1" parent="-487ef5e3:131246c8237:-7cb5" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7aed" ordering="1" parent="-487ef5e3:131246c8237:-7cb5" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7caf" interfaceFunctionName="Inductor" ordering="2" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="750.0" y="233.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7af2" ordering="1" parent="-487ef5e3:131246c8237:-7caf" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7af1" ordering="1" parent="-487ef5e3:131246c8237:-7caf" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7ca6" interfaceFunctionName="Inductor" ordering="3" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="870.0" y="153.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7aea" ordering="1" parent="-487ef5e3:131246c8237:-7ca6" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ae9" ordering="1" parent="-487ef5e3:131246c8237:-7ca6" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7c9d" interfaceFunctionName="Inductor" ordering="4" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00038197186"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.8197186E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.8197186E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="870.0" y="233.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ae6" ordering="1" parent="-487ef5e3:131246c8237:-7c9d" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ae5" ordering="1" parent="-487ef5e3:131246c8237:-7c9d" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7c97" interfaceFunctionName="Inductor" ordering="5" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00063661977"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="980.0" y="153.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ae2" ordering="1" parent="-487ef5e3:131246c8237:-7c97" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ae1" ordering="1" parent="-487ef5e3:131246c8237:-7c97" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7c8e" interfaceFunctionName="Inductor" ordering="6" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00076394372"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="7.6394372E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="7.6394372E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="980.0" y="233.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ade" ordering="1" parent="-487ef5e3:131246c8237:-7c8e" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7add" ordering="1" parent="-487ef5e3:131246c8237:-7c8e" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7c82" interfaceFunctionName="Inductor" ordering="7" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00043926764"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.3926764E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.3926764E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="660.0" y="270.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7af6" ordering="1" parent="-487ef5e3:131246c8237:-7c82" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7af5" ordering="1" parent="-487ef5e3:131246c8237:-7c82" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7c75" interfaceFunctionName="Resistor" ordering="8" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.069"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="0.069"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.069"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="660.0" y="360.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7afa" ordering="1" parent="-487ef5e3:131246c8237:-7c75" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7af9" ordering="1" parent="-487ef5e3:131246c8237:-7c75" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitLink id="-487ef5e3:131246c8237:-7c6e" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7ae5" target="-487ef5e3:131246c8237:-7aea"><mxGeometry as="geometry" x="450.0" y="53.0"><mxPoint as="sourcePoint" x="890.0" y="197.0"/><mxPoint as="targetPoint" x="890.0" y="223.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7c6d" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7add" target="-487ef5e3:131246c8237:-7ae2"><mxGeometry as="geometry" x="450.0" y="53.0"><mxPoint as="sourcePoint" x="1000.0" y="197.0"/><mxPoint as="targetPoint" x="1000.0" y="223.0"/></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-7c6a" ordering="9" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="887.0" y="307.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c68" ordering="1" parent="-487ef5e3:131246c8237:-7c6a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c67" ordering="2" parent="-487ef5e3:131246c8237:-7c6a" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c69" ordering="1" parent="-487ef5e3:131246c8237:-7c6a" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7c66" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7af2" style="ImplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-487ef5e3:131246c8237:-7c69"><mxGeometry as="geometry" x="450.0" y="53.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7c65" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7c68" target="-487ef5e3:131246c8237:-7ae6"><mxGeometry as="geometry" x="450.0" y="53.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7c6b" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7c67" style="ImplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-487ef5e3:131246c8237:-7ade"><mxGeometry as="geometry" x="450.0" y="53.0"><mxPoint as="sourcePoint" x="1000.0" y="277.0"/><mxPoint as="targetPoint" x="890.0" y="303.0"/><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-7c54" ordering="10" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="767.0" y="207.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c52" ordering="1" parent="-487ef5e3:131246c8237:-7c54" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c51" ordering="2" parent="-487ef5e3:131246c8237:-7c54" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c53" ordering="1" parent="-487ef5e3:131246c8237:-7c54" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7c50" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7af1" target="-487ef5e3:131246c8237:-7c53"><mxGeometry as="geometry" x="450.0" y="53.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7c4f" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7c52" target="-487ef5e3:131246c8237:-7aee"><mxGeometry as="geometry" x="450.0" y="53.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7c55" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7af5" target="-487ef5e3:131246c8237:-7c51"><mxGeometry as="geometry" x="450.0" y="53.0"><mxPoint as="sourcePoint" x="680.0" y="219.0"/><mxPoint as="targetPoint" x="770.0" y="213.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="680.0" y="210.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7c4e" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7af9" target="-487ef5e3:131246c8237:-7af6"><mxGeometry as="geometry" x="450.0" y="100.0"><mxPoint as="sourcePoint" x="680.0" y="314.0"/><mxPoint as="targetPoint" x="680.0" y="350.0"/></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-7c08" ordering="11" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="767.0" y="127.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c06" ordering="1" parent="-487ef5e3:131246c8237:-7c08" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c05" ordering="2" parent="-487ef5e3:131246c8237:-7c08" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7c07" ordering="1" parent="-487ef5e3:131246c8237:-7c08" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7c03" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7aed" target="-487ef5e3:131246c8237:-7c06"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-7bfb" ordering="12" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="887.0" y="127.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7bf9" ordering="1" parent="-487ef5e3:131246c8237:-7bfb" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7bf8" ordering="2" parent="-487ef5e3:131246c8237:-7bfb" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7bfa" ordering="1" parent="-487ef5e3:131246c8237:-7bfb" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7bf7" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7ae9" target="-487ef5e3:131246c8237:-7bfa"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7bf6" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7bf9" target="-487ef5e3:131246c8237:-7c07"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7bfc" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7ae1" target="-487ef5e3:131246c8237:-7bf8"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="1000.0" y="149.0"/><mxPoint as="targetPoint" x="890.0" y="130.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="1000.0" y="130.0"/></Array></mxGeometry></ImplicitLink><VoltageSensorBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7bec" interfaceFunctionName="VoltageSensor" ordering="13" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=0;mirror=false;flip=true"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="520.0" y="250.0"/></VoltageSensorBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7bea" ordering="2" parent="-487ef5e3:131246c8237:-7bec" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7be9" ordering="1" parent="-487ef5e3:131246c8237:-7bec" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7beb" ordering="1" parent="-487ef5e3:131246c8237:-7bec" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7bdf" interfaceFunctionName="CurrentSensor" ordering="14" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;flip=false;mirror=true"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="520.0" y="480.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7bdd" ordering="2" parent="-487ef5e3:131246c8237:-7bdf" style="ExplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7bdc" ordering="1" parent="-487ef5e3:131246c8237:-7bdf" style="ImplicitInputPort;align=right;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7bde" ordering="1" parent="-487ef5e3:131246c8237:-7bdf" style="ImplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitOutputPort><SplitBlock id="-487ef5e3:131246c8237:-7bd4" ordering="15" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="537.0" y="127.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7bd2" ordering="1" parent="-487ef5e3:131246c8237:-7bd4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7bd1" ordering="2" parent="-487ef5e3:131246c8237:-7bd4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7bd3" ordering="1" parent="-487ef5e3:131246c8237:-7bd4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7bd0" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7ad3" target="-487ef5e3:131246c8237:-7bd3"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="430.0" y="130.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7bcf" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7c05" target="-487ef5e3:131246c8237:-7bd2"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7bd5" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7beb" target="-487ef5e3:131246c8237:-7bd1"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="540.0" y="246.0"/><mxPoint as="targetPoint" x="540.0" y="130.0"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7bbe" interfaceFunctionName="Switch" ordering="16" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.00001"/><data column="0" line="1" value="10000000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-5"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E7"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="610.0" y="490.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ad0" ordering="1" parent="-487ef5e3:131246c8237:-7bbe" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7acf" ordering="2" parent="-487ef5e3:131246c8237:-7bbe" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ace" ordering="1" parent="-487ef5e3:131246c8237:-7bbe" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7bb1" interfaceFunctionName="CMSCOPE" ordering="17" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-1.5 -13"/><data column="0" line="6" value="1.5 13"/><data column="0" line="7" value="0.5 0.5"/><data column="0" line="8" value="20"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Generator Voltage and Fault Current"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.5"/><data column="0" line="2" realPart="0.5"/><data column="0" line="3" realPart="-1.5"/><data column="0" line="4" realPart="1.5"/><data column="0" line="5" realPart="-13.0"/><data column="0" line="6" realPart="13.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="20.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="600.0" y="380.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-9f15b34:131b8cd9210:-7c7e" ordering="1" parent="-487ef5e3:131246c8237:-7bb1" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ControlPort dataType="UNKNOW_TYPE" id="-9f15b34:131b8cd9210:-7c7c" ordering="1" parent="-487ef5e3:131246c8237:-7bb1" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-9f15b34:131b8cd9210:-7c7d" ordering="2" parent="-487ef5e3:131246c8237:-7bb1" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><BasicBlock blockType="h" id="-487ef5e3:131246c8237:-7ba8" interfaceFunctionName="CLOCK_c" ordering="18" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="139.0"/><data column="1" line="0" realPart="-170.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c99"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c99"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c95"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c95"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="156.71066000000002"/><data column="1" line="0" realPart="-196.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c90"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c90"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="146.0"/><data column="0" line="2" realPart="167.37732666666668"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-244.0"/><data column="0" line="2" realPart="-200.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="168.71066000000002"/><data column="0" line="1" realPart="169.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-184.0"/><data column="0" line="1" realPart="-146.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="170.04399333333336"/><data column="0" line="1" realPart="191.70999999999998"/><data column="0" line="2" realPart="151.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-200.0"/><data column="0" line="1" realPart="-98.0"/><data column="0" line="2" realPart="-98.0"/><data column="0" line="3" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="600.0" y="180.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7aaf" ordering="1" parent="-487ef5e3:131246c8237:-7ba8" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><BasicBlock blockType="h" id="-487ef5e3:131246c8237:-7ba1" interfaceFunctionName="STEP_FUNCTION" ordering="19" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.25"/><data column="0" line="1" value="-3"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-3.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.25"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c85"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c85"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="128.571433"/><data column="1" line="0" realPart="-90.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c82"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7c82"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="156.000003"/><data column="0" line="2" realPart="117.47839499999999"/><data column="0" line="3" realPart="117.47839499999999"/><data column="0" line="4" realPart="156.000003"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-214.39289999999994"/><data column="0" line="2" realPart="-214.39289999999994"/><data column="0" line="3" realPart="-124.69677999999999"/><data column="0" line="4" realPart="-124.69677999999999"/><data column="0" line="5" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="144.571433"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-80.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="530.0" y="550.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ad7" ordering="1" parent="-487ef5e3:131246c8237:-7ba1" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ImplicitLink id="-487ef5e3:131246c8237:-7b8f" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7bdc" target="-487ef5e3:131246c8237:-7ad0"><mxGeometry as="geometry" x="-1.0" y="103.0"><mxPoint as="sourcePoint" x="573.0" y="503.0"/><mxPoint as="targetPoint" x="599.0" y="503.0"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7b2b" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7ace" target="-487ef5e3:131246c8237:-7afa"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="654.0" y="510.0"/><mxPoint as="targetPoint" x="680.0" y="360.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="680.0" y="510.0"/></Array></mxGeometry></ImplicitLink><ExplicitLink id="-487ef5e3:131246c8237:-7b27" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7ad7" target="-487ef5e3:131246c8237:-7acf"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="574.0" y="620.0"/><mxPoint as="targetPoint" x="600.0" y="520.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="590.0" y="570.0"/><mxPoint x="590.0" y="520.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-487ef5e3:131246c8237:-7b26" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7bdd" target="-9f15b34:131b8cd9210:-7c7d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="516.0" y="510.0"/><mxPoint as="targetPoint" x="540.0" y="410.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="490.0" y="510.0"/><mxPoint x="490.0" y="410.0"/></Array></mxGeometry></ExplicitLink><ExplicitLink id="-487ef5e3:131246c8237:-7b1c" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7bea" target="-9f15b34:131b8cd9210:-7c7e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="564.0" y="270.0"/><mxPoint as="targetPoint" x="590.0" y="390.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="580.0" y="270.0"/><mxPoint x="580.0" y="390.0"/></Array></mxGeometry></ExplicitLink><CommandControlLink id="-487ef5e3:131246c8237:-7b19" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7aaf" target="-9f15b34:131b8cd9210:-7c7c"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="620.0" y="324.0"/><mxPoint as="targetPoint" x="620.0" y="370.0"/></mxGeometry></CommandControlLink><SplitBlock id="-487ef5e3:131246c8237:-7b15" ordering="20" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="427.0" y="347.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7b13" ordering="1" parent="-487ef5e3:131246c8237:-7b15" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7b12" ordering="2" parent="-487ef5e3:131246c8237:-7b15" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7b14" ordering="1" parent="-487ef5e3:131246c8237:-7b15" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7b10" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7b13" target="-487ef5e3:131246c8237:-7ad4"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7b16" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7b12" target="-487ef5e3:131246c8237:-7be9"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="516.0" y="270.0"/><mxPoint as="targetPoint" x="430.0" y="350.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="490.0" y="350.0"/><mxPoint x="490.0" y="270.0"/></Array></mxGeometry></ImplicitLink><GroundBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7b0a" interfaceFunctionName="Ground" ordering="21" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="410.0" y="530.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7b09" ordering="1" parent="-487ef5e3:131246c8237:-7b0a" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-487ef5e3:131246c8237:-7b05" ordering="22" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="427.0" y="487.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7b03" ordering="1" parent="-487ef5e3:131246c8237:-7b05" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7b02" ordering="2" parent="-487ef5e3:131246c8237:-7b05" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7b04" ordering="1" parent="-487ef5e3:131246c8237:-7b05" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7b01" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7bde" target="-487ef5e3:131246c8237:-7b04"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7b00" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7b03" target="-487ef5e3:131246c8237:-7b14"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7b06" parent="-487ef5e3:131246c8237:-7cc8" source="-487ef5e3:131246c8237:-7b02" target="-487ef5e3:131246c8237:-7b09"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="430.0" y="526.0"/><mxPoint as="targetPoint" x="430.0" y="490.0"/></mxGeometry></ImplicitLink><TextBlock id="-487ef5e3:131246c8237:-79c3" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="910.0" y="150.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79c0" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.125"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.125"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.125"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="800.0" y="150.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79be" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="790.0" y="230.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79bb" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.12"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.12"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.12"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="910.0" y="230.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79b9" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="1020.0" y="150.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79b7" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.24"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.24"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.24"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="1020.0" y="230.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79ac" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="(0.069+j0.138)"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="(0.069+j0.138)"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="(0.069+j0.138)"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="720.0" y="310.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79a9" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Generators's<br>Equivalent"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Generators's<br>Equivalent"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Generators's<br>Equivalent"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="330.0" y="230.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79a4" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Voltage and <br>Current Waveform"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Voltage and <br>Current Waveform"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Voltage and <br>Current Waveform"/></ScilabString><mxGeometry as="geometry" height="40.0" width="50.0" x="580.0" y="420.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-79a1" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="580.0"/></TextBlock><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7cbf" interfaceFunctionName="SineVoltage" ordering="23" parent="-487ef5e3:131246c8237:-7cc8" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="410.0" y="220.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ad4" ordering="1" parent="-487ef5e3:131246c8237:-7cbf" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7ad3" ordering="1" parent="-487ef5e3:131246c8237:-7cbf" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort></root></mxGraphModel><mxCell as="defaultParent" id="-487ef5e3:131246c8237:-7cc8" parent="-487ef5e3:131246c8237:-7cc7"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.4/result_example_9_4.txt b/Working_Examples/83/CH9/EX9.4/result_example_9_4.txt new file mode 100755 index 0000000..0f4efe1 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.4/result_example_9_4.txt @@ -0,0 +1,13 @@ + + feeder_impedance = + + 0.0688705 + 0.1377410i + +Generator A reactance = j0.125 pu +Generator B reactance = j0.100 pu +Generator C reactance = j0.200 pu +Reactor A reactance = j0.150 pu +Reactor B reactance = j0.120 pu +Reactor C reactance = j0.240 pu + +SC MVA = 211 MVA diff --git a/Working_Examples/83/CH9/EX9.4/xcos_result_example_9_4.jpeg b/Working_Examples/83/CH9/EX9.4/xcos_result_example_9_4.jpeg Binary files differnew file mode 100755 index 0000000..8fc16bc --- /dev/null +++ b/Working_Examples/83/CH9/EX9.4/xcos_result_example_9_4.jpeg diff --git a/Working_Examples/83/CH9/EX9.5/example_9_5.sce b/Working_Examples/83/CH9/EX9.5/example_9_5.sce new file mode 100755 index 0000000..4eebfe8 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.5/example_9_5.sce @@ -0,0 +1,36 @@ +//Chapter 9 +//Example 9.5 +//page 347 +//To calculate short circuit solution +clear;clc; +//referring to figures 9.19 in the text book,we get directly the fault current +V4o=1.0; +Zf=%i*0.13560; +If=V4o/Zf; +printf('\nIf= -j%0.5f pu\n\n',abs(If)); + +//From Fig9.19d +I1=If*((%i*0.19583)/(%i*0.37638)); +I2=If*((%i*0.18055)/(%i*0.37638)); +printf('I1 = -j%0.5f pu \n\nI2 = -j%0.5f pu\n\n',abs(I1),abs(I2)); + +//voltage changes for bus 1,2 and 3 +deltaV1=0-(%i*0.15)*I1; +deltaV2=0-(%i*0.15)*I2; +printf('DeltaV1=%0.5f pu\n\nDeltaV2=%0.5f pu\n\n',deltaV1,deltaV2); + +//reffering to book +V1f=1+deltaV1; +V2f=1+deltaV2; +printf('V1f= %0.5f pu\n\nV2f=%0.5f pu\n\n',V1f,V2f); +I13=(V1f-V2f)/(%i*0.15+%i*0.1); +printf('I13=j%0.5f pu\n\n',abs(I13)); +deltaV3=0-((%i*0.15)*(I1)+(%i*0.15)*(I13)); +Vf3=1+deltaV3; +printf('DeltaV3=%0.5f pu\n\n',deltaV3); +printf('Vf3=%0.5f pu\n\n',Vf3); +Vf4=0; +printf('Vf4=%d\n\n',Vf4); +//short circuit MVA at bus 4 +SC_MVA_4=abs(If)*100; +printf('Short circuit MVA at bus4 =%0.3f MVA',SC_MVA_4); diff --git a/Working_Examples/83/CH9/EX9.5/example_9_5.xcos b/Working_Examples/83/CH9/EX9.5/example_9_5.xcos new file mode 100755 index 0000000..bcc2224 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.5/example_9_5.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="0.5" title="example_9_5"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="-487ef5e3:131246c8237:-799a"/><mxCell id="-487ef5e3:131246c8237:-799b" parent="-487ef5e3:131246c8237:-799a"/><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7906" interfaceFunctionName="Switch" ordering="1" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Switch" simulationFunctionType="DEFAULT" style="Switch;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="2" width="1"><data column="0" line="0" value="0.00000001"/><data column="0" line="1" value="100000000"/></ScilabString><ScilabDouble as="realParameters" height="2" width="1"><data column="0" line="0" realPart="0.01"/><data column="0" line="1" realPart="100000.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Switch"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="p"/><data column="0" line="1" value="inp"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="2" width="1"><data column="0" line="0" value="Ron"/><data column="0" line="1" value="Roff"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E-8"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0E8"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="420.0" y="780.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-752f" ordering="1" parent="-487ef5e3:131246c8237:-7906" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-752e" ordering="2" parent="-487ef5e3:131246c8237:-7906" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-752d" ordering="1" parent="-487ef5e3:131246c8237:-7906" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="90" dependsOnU="1" id="-487ef5e3:131246c8237:-78f5" interfaceFunctionName="CurrentSensor" ordering="2" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="CurrentSensor" simulationFunctionType="DEFAULT" style="CurrentSensor;rotation=90;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CurrentSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="i"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="430.0" y="700.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-78f3" ordering="2" parent="-487ef5e3:131246c8237:-78f5" style="ExplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-78f2" ordering="1" parent="-487ef5e3:131246c8237:-78f5" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-78f4" ordering="1" parent="-487ef5e3:131246c8237:-78f5" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ImplicitOutputPort><GroundBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7862" interfaceFunctionName="Ground" ordering="3" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="410.0" y="860.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7861" ordering="1" parent="-487ef5e3:131246c8237:-7862" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-782f" interfaceFunctionName="Inductor" ordering="4" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="430.0" y="430.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76ce" ordering="1" parent="-487ef5e3:131246c8237:-782f" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76cd" ordering="1" parent="-487ef5e3:131246c8237:-782f" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7800" interfaceFunctionName="Inductor" ordering="5" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="430.0" y="180.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76d2" ordering="1" parent="-487ef5e3:131246c8237:-7800" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76d1" ordering="1" parent="-487ef5e3:131246c8237:-7800" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><GroundBlock angle="180" dependsOnU="1" id="-487ef5e3:131246c8237:-77f8" interfaceFunctionName="Ground" ordering="6" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;rotation=180;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="430.0" y="90.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-77f7" ordering="1" parent="-487ef5e3:131246c8237:-77f8" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-77d4" interfaceFunctionName="Inductor" ordering="7" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="660.0" y="280.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76ca" ordering="1" parent="-487ef5e3:131246c8237:-77d4" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76c9" ordering="1" parent="-487ef5e3:131246c8237:-77d4" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><SplitBlock id="-487ef5e3:131246c8237:-7779" ordering="8" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="447.0" y="297.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7777" ordering="1" parent="-487ef5e3:131246c8237:-7779" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7776" ordering="2" parent="-487ef5e3:131246c8237:-7779" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7778" ordering="1" parent="-487ef5e3:131246c8237:-7779" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7774" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-7777" style="ImplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=horizontal" target="-487ef5e3:131246c8237:-76ca"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-777a" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-7776" style="ImplicitLink;noEdgeStyle=0;edgeStyle=elbowEdgeStyle;elbow=vertical" target="-487ef5e3:131246c8237:-76d2"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="450.0" y="234.0"/><mxPoint as="targetPoint" x="453.3333333333333" y="293.3333333333333"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7761" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76d1" target="-487ef5e3:131246c8237:-77f7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="460.0" y="176.0"/><mxPoint as="targetPoint" x="453.3333333333333" y="133.33333333333334"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-775d" interfaceFunctionName="Inductor" ordering="9" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="660.0" y="520.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76c2" ordering="1" parent="-487ef5e3:131246c8237:-775d" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76c1" ordering="1" parent="-487ef5e3:131246c8237:-775d" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><BasicBlock angle="90" dependsOnU="1" id="-487ef5e3:131246c8237:-7729" interfaceFunctionName="Inductor" ordering="10" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00031830988"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.1830988E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="930.0" y="390.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76be" ordering="1" parent="-487ef5e3:131246c8237:-7729" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76bd" ordering="1" parent="-487ef5e3:131246c8237:-7729" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ImplicitLink id="-487ef5e3:131246c8237:-771d" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76c9" target="-487ef5e3:131246c8237:-76be"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="949.9999999999999" y="385.99999999999994"/><mxPoint as="targetPoint" x="703.7037037037037" y="305.55555555555554"/><Array as="points" scilabClass="ScilabList"><mxPoint x="950.0" y="300.0"/></Array></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnU="1" id="-487ef5e3:131246c8237:-7717" interfaceFunctionName="Inductor" ordering="11" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00047746482"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.7746482E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="930.0" y="600.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76ba" ordering="1" parent="-487ef5e3:131246c8237:-7717" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76b9" ordering="1" parent="-487ef5e3:131246c8237:-7717" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><GroundBlock dependsOnU="1" id="-487ef5e3:131246c8237:-770c" interfaceFunctionName="Ground" ordering="12" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="930.0" y="690.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-770b" ordering="1" parent="-487ef5e3:131246c8237:-770c" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="-487ef5e3:131246c8237:-7707" ordering="13" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="947.0" y="537.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7705" ordering="1" parent="-487ef5e3:131246c8237:-7707" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7704" ordering="2" parent="-487ef5e3:131246c8237:-7707" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7706" ordering="1" parent="-487ef5e3:131246c8237:-7707" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-7702" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76c1" target="-487ef5e3:131246c8237:-7705"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7708" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76b9" target="-487ef5e3:131246c8237:-7704"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="949.9999999999999" y="596.0"/><mxPoint as="targetPoint" x="944.4444444444443" y="537.037037037037"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7701" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-770b" target="-487ef5e3:131246c8237:-76ba"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="949.9999999999999" y="686.0"/><mxPoint as="targetPoint" x="953.7037037037037" y="648.1481481481482"/></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-76fd" interfaceFunctionName="Inductor" ordering="14" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="Inductor" simulationFunctionType="DEFAULT" style="Inductor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="0.00063661977"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Inductor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="L"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.3661977E-4"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="670.0" y="400.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76c6" ordering="1" parent="-487ef5e3:131246c8237:-76fd" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><mxCell connectable="0" id="-487ef5e3:131246c8237:-76fd#identifier" parent="-487ef5e3:131246c8237:-76fd" style="noLabel=0;opacity=0;" vertex="1"><mxGeometry as="geometry" relative="1" x="0.5" y="1.1"/></mxCell><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76c5" ordering="1" parent="-487ef5e3:131246c8237:-76fd" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><SplitBlock id="-487ef5e3:131246c8237:-76f0" ordering="15" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="447.0" y="297.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76ee" ordering="1" parent="-487ef5e3:131246c8237:-76f0" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76ed" ordering="2" parent="-487ef5e3:131246c8237:-76f0" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76ef" ordering="1" parent="-487ef5e3:131246c8237:-76f0" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-76ec" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76cd" target="-487ef5e3:131246c8237:-76ef"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-76eb" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76ee" target="-487ef5e3:131246c8237:-7778"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-76f1" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76ed" target="-487ef5e3:131246c8237:-76c6"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="666.0" y="420.0"/><mxPoint as="targetPoint" x="453.7037037037037" y="305.55555555555554"/></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-76da" ordering="16" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="947.0" y="537.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76d8" ordering="1" parent="-487ef5e3:131246c8237:-76da" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76d7" ordering="2" parent="-487ef5e3:131246c8237:-76da" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76d9" ordering="1" parent="-487ef5e3:131246c8237:-76da" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-76d6" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76bd" target="-487ef5e3:131246c8237:-76d9"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-76d5" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76d8" target="-487ef5e3:131246c8237:-7706"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="950.0" y="540.0"/><mxPoint x="950.0" y="540.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-76db" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76c5" target="-487ef5e3:131246c8237:-76d7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="714.0" y="420.0"/><mxPoint as="targetPoint" x="951.0869565217391" y="538.0434782608695"/></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-76aa" ordering="17" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="447.0" y="537.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76a8" ordering="1" parent="-487ef5e3:131246c8237:-76aa" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76a7" ordering="2" parent="-487ef5e3:131246c8237:-76aa" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-76a9" ordering="1" parent="-487ef5e3:131246c8237:-76aa" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-76a6" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76ce" target="-487ef5e3:131246c8237:-76a9"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-76a5" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76a8" target="-487ef5e3:131246c8237:-76c2"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="450.0" y="540.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-76ab" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76a7" target="-487ef5e3:131246c8237:-76b6"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="450.0" y="596.0"/><mxPoint as="targetPoint" x="447.1544715447155" y="536.5853658536586"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7698" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-752d" target="-487ef5e3:131246c8237:-78f4"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="439.99999999999994" y="743.9999999999999"/><mxPoint as="targetPoint" x="439.0243902439025" y="772.3577235772358"/></mxGeometry></ImplicitLink><VoltageSensorBlock angle="180" dependsOnU="1" id="-487ef5e3:131246c8237:-768c" interfaceFunctionName="VoltageSensor" ordering="18" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=180;mirror=true;flip=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="700.0"/></VoltageSensorBlock><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-768a" ordering="2" parent="-487ef5e3:131246c8237:-768c" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7689" ordering="1" parent="-487ef5e3:131246c8237:-768c" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-768b" ordering="1" parent="-487ef5e3:131246c8237:-768c" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><SplitBlock id="-487ef5e3:131246c8237:-7682" ordering="19" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="447.0" y="677.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7680" ordering="1" parent="-487ef5e3:131246c8237:-7682" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-767f" ordering="2" parent="-487ef5e3:131246c8237:-7682" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7681" ordering="1" parent="-487ef5e3:131246c8237:-7682" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-767e" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-76b5" target="-487ef5e3:131246c8237:-7681"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-767d" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-7680" target="-487ef5e3:131246c8237:-78f2"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7683" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-768b" target="-487ef5e3:131246c8237:-767f"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="560.0" y="696.0000000000001"/><mxPoint as="targetPoint" x="450.98039215686276" y="676.4705882352941"/><Array as="points" scilabClass="ScilabList"><mxPoint x="560.0" y="680.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="-487ef5e3:131246c8237:-7671" ordering="20" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="427.0" y="837.0"/></SplitBlock><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-766f" ordering="1" parent="-487ef5e3:131246c8237:-7671" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-766e" ordering="2" parent="-487ef5e3:131246c8237:-7671" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitInputPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-7670" ordering="1" parent="-487ef5e3:131246c8237:-7671" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitLink id="-487ef5e3:131246c8237:-766d" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-752f" target="-487ef5e3:131246c8237:-7670"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-766c" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-766f" target="-487ef5e3:131246c8237:-7861"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="430.0" y="850.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="-487ef5e3:131246c8237:-7672" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-766e" target="-487ef5e3:131246c8237:-7689"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="536.0" y="719.9999999999999"/><mxPoint as="targetPoint" x="428.57142857142856" y="841.2698412698412"/><Array as="points" scilabClass="ScilabList"><mxPoint x="510.0" y="840.0"/><mxPoint x="510.0" y="720.0"/></Array></mxGeometry></ImplicitLink><BasicBlock dependsOnU="1" id="-487ef5e3:131246c8237:-7662" interfaceFunctionName="CMSCOPE" ordering="21" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="-1.414 -22"/><data column="0" line="6" value="1.414 22"/><data column="0" line="7" value="0.5 0.5"/><data column="0" line="8" value="5"/><data column="0" line="9" value="0"/><data column="0" line="10" value="Voltage and Current at the fault"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="0.5"/><data column="0" line="2" realPart="0.5"/><data column="0" line="3" realPart="-1.414"/><data column="0" line="4" realPart="1.414"/><data column="0" line="5" realPart="-22.0"/><data column="0" line="6" realPart="22.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="5.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="640.0" y="710.0"/></BasicBlock><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-9f15b34:131b8cd9210:-7bd8" ordering="1" parent="-487ef5e3:131246c8237:-7662" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="6.0"/></ExplicitInputPort><ControlPort dataType="UNKNOW_TYPE" id="-9f15b34:131b8cd9210:-7bd6" ordering="1" parent="-487ef5e3:131246c8237:-7662" style="ControlPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-9f15b34:131b8cd9210:-7bd7" ordering="2" parent="-487ef5e3:131246c8237:-7662" style="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="26.0"/></ExplicitInputPort><ExplicitLink id="-487ef5e3:131246c8237:-765a" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-768a" target="-9f15b34:131b8cd9210:-7bd8"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="584.0000000000001" y="720.0000000000001"/><mxPoint as="targetPoint" x="636.3636363636364" y="717.1717171717172"/></mxGeometry></ExplicitLink><ExplicitLink id="-487ef5e3:131246c8237:-7659" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-78f3" target="-9f15b34:131b8cd9210:-7bd7"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="460.0" y="744.0000000000001"/><mxPoint as="targetPoint" x="636.3636363636364" y="747.4747474747475"/><Array as="points" scilabClass="ScilabList"><mxPoint x="460.0" y="770.0"/><mxPoint x="620.0" y="770.0"/><mxPoint x="620.0" y="740.0"/></Array></mxGeometry></ExplicitLink><BasicBlock blockType="h" id="-487ef5e3:131246c8237:-7653" interfaceFunctionName="CLOCK_c" ordering="22" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="139.0"/><data column="1" line="0" realPart="-170.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bfe"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bfe"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.0001"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bfa"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bfa"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="156.71066000000002"/><data column="1" line="0" realPart="-196.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="8.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bf5"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bf5"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="146.0"/><data column="0" line="2" realPart="167.37732666666668"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-244.0"/><data column="0" line="2" realPart="-200.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="168.71066000000002"/><data column="0" line="1" realPart="169.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-184.0"/><data column="0" line="1" realPart="-146.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="170.04399333333336"/><data column="0" line="1" realPart="191.70999999999998"/><data column="0" line="2" realPart="151.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-200.0"/><data column="0" line="1" realPart="-98.0"/><data column="0" line="2" realPart="-98.0"/><data column="0" line="3" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="640.0" y="620.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="-487ef5e3:131246c8237:-763a" ordering="1" parent="-487ef5e3:131246c8237:-7653" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><CommandControlLink id="-487ef5e3:131246c8237:-7651" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-763a" target="-9f15b34:131b8cd9210:-7bd6"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="660.0" y="664.0000000000001"/><mxPoint as="targetPoint" x="656.25" y="708.3333333333334"/></mxGeometry></CommandControlLink><BasicBlock blockType="h" id="-487ef5e3:131246c8237:-764b" interfaceFunctionName="STEP_FUNCTION" ordering="23" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;mirror=true;flip=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="0.255"/><data column="0" line="1" value="-3"/><data column="0" line="2" value="5"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-3.0"/><data column="0" line="1" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.255"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bea"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7bea"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="128.571433"/><data column="1" line="0" realPart="-90.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7be7"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-9f15b34:131b8cd9210:-7be7"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="156.000003"/><data column="0" line="2" realPart="117.47839499999999"/><data column="0" line="3" realPart="117.47839499999999"/><data column="0" line="4" realPart="156.000003"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="4.0"/><data column="0" line="1" realPart="-214.39289999999994"/><data column="0" line="2" realPart="-214.39289999999994"/><data column="0" line="3" realPart="-124.69677999999999"/><data column="0" line="4" realPart="-124.69677999999999"/><data column="0" line="5" realPart="-44.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="144.571433"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-80.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="830.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-7532" ordering="1" parent="-487ef5e3:131246c8237:-764b" style="ExplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ExplicitOutputPort><ExplicitLink id="-487ef5e3:131246c8237:-7644" parent="-487ef5e3:131246c8237:-799b" source="-487ef5e3:131246c8237:-7532" target="-487ef5e3:131246c8237:-752e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="536.0" y="850.0"/><mxPoint as="targetPoint" x="448.9795918367347" y="826.530612244898"/><Array as="points" scilabClass="ScilabList"><mxPoint x="450.0" y="850.0"/></Array></mxGeometry></ExplicitLink><TextBlock id="-487ef5e3:131246c8237:-7428" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#DB1717" value="Fault<br>Voltage"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault<br>Voltage"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault<br>Voltage"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="370.0" y="610.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7423" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="390.0" y="430.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-741f" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="480.0" y="180.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-741b" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="660.0" y="240.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7418" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="660.0" y="560.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7415" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.15"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.15"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.15"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="880.0" y="600.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7412" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="670.0" y="360.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-740f" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="j0.1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="j0.1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="j0.1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="970.0" y="390.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-740b" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Fault Initiation"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Fault Initiation"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Fault Initiation"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="550.0" y="860.0"/></TextBlock><TextBlock id="-487ef5e3:131246c8237:-7407" parent="-487ef5e3:131246c8237:-799b" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;fontColor=#D31B1B;flip=false;mirror=false" value="Voltage and <br>Current Waveform"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Voltage and <br>Current Waveform"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Voltage and <br>Current Waveform"/></ScilabString><mxGeometry as="geometry" height="40.0" width="50.0" x="640.0" y="770.0"/></TextBlock><BasicBlock angle="90" dependsOnU="1" id="-487ef5e3:131246c8237:-7909" interfaceFunctionName="SineVoltage" ordering="24" parent="-487ef5e3:131246c8237:-799b" simulationFunctionName="SineVoltage" simulationFunctionType="DEFAULT" style="SineVoltage;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="5" width="1"><data column="0" line="0" value="1.414"/><data column="0" line="1" value="0"/><data column="0" line="2" value="50"/><data column="0" line="3" value="0"/><data column="0" line="4" value="0"/></ScilabString><ScilabDouble as="realParameters" height="5" width="1"><data column="0" line="0" realPart="1.414"/><data column="0" line="1" realPart="0.0"/><data column="0" line="2" realPart="50.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="0.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="SineVoltage"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="5" width="1"><data column="0" line="0" value="V"/><data column="0" line="1" value="phase"/><data column="0" line="2" value="freqHz"/><data column="0" line="3" value="offset"/><data column="0" line="4" value="startTime"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.414"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="50.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="60.0" width="50.0" x="430.0" y="600.0"/></BasicBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76b6" ordering="1" parent="-487ef5e3:131246c8237:-7909" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="-487ef5e3:131246c8237:-76b5" ordering="1" parent="-487ef5e3:131246c8237:-7909" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="60.0"/></ImplicitOutputPort></root></mxGraphModel><mxCell as="defaultParent" id="-487ef5e3:131246c8237:-799b" parent="-487ef5e3:131246c8237:-799a"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.5/result_example_9_5.txt b/Working_Examples/83/CH9/EX9.5/result_example_9_5.txt new file mode 100755 index 0000000..dde2300 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.5/result_example_9_5.txt @@ -0,0 +1,25 @@ + + +If= -j7.37463 pu + +I1 = -j3.83701 pu + +I2 = -j3.53762 pu + +DeltaV1=-0.57555 pu + +DeltaV2=-0.53064 pu + +V1f= 0.42445 pu + +V2f=0.46936 pu + +I13=j0.17963 pu + +DeltaV3=-0.54861 pu + +Vf3=0.45139 pu + +Vf4=0 + +Short circuit MVA at bus4 =737.463 MVA diff --git a/Working_Examples/83/CH9/EX9.5/xcos_result_example_9_5.jpeg b/Working_Examples/83/CH9/EX9.5/xcos_result_example_9_5.jpeg Binary files differnew file mode 100755 index 0000000..c4871ae --- /dev/null +++ b/Working_Examples/83/CH9/EX9.5/xcos_result_example_9_5.jpeg diff --git a/Working_Examples/83/CH9/EX9.6/example_9_6.sce b/Working_Examples/83/CH9/EX9.6/example_9_6.sce new file mode 100755 index 0000000..2ab3fd6 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.6/example_9_6.sce @@ -0,0 +1,73 @@ +//Chapter 9 +//Example 9.6 +//page 352 +//To calculate short circuit solution using algorithm for short circuit studies +clear;clc; + +Y11=1/(0.15*%i)+1/(0.15*%i)+1/(0.1*%i)+1/(0.2*%i); +Y12=-1/(0.2*%i); +Y21=Y12; +Y13=-1/(0.15*%i); +Y31=Y13; +Y14=-1/(0.1*%i); +Y41=Y14; +Y22=1/(0.15*%i)+1/(0.15*%i)+1/(0.1*%i)+1/(0.2*%i); +Y23=-1/(0.1*%i); +Y32=Y23; +Y24=-1/(0.15*%i); +Y42=Y24; +Y33=1/(0.15*%i)+1/(0.1*%i); +Y34=0; +Y43=Y34; +Y44=1/(0.15*%i)+1/(0.1*%i); + +//Ybus matrix can be written as + +Ybus=[Y11 Y12 Y13 Y14;Y21 Y22 Y23 Y24;Y31 Y32 Y33 Y34;Y41 Y42 Y43 Y44]; + +Zbus=inv(Ybus); + +//preault voltages +V10=1;V20=1;V30=1;V40=1; + +//post fault voltages +V1f=V10-(Zbus(1,4)/Zbus(4,4))*V40; +V2f=V20-(Zbus(2,4)/Zbus(4,4))*V40; +V3f=V30-(Zbus(3,4)/Zbus(4,4))*V40; +V4f=V40-(Zbus(4,4)/Zbus(4,4))*V40; + +//to calculate fault current through Zf=0 +If=V40/(Zbus(4,4)+0); + +//short circuit current in lines 1-3,1-2,1-4,2-4 and 2-3 + +I13f=(V1f-V3f)/(0.15*%i); +I12f=(V1f-V2f)/(0.2*%i); +I14f=(V1f-V4f)/(0.1*%i); +I24f=(V2f-V4f)/(0.15*%i); +I23f=(V2f-V3f)/(0.1*%i); + +//If at all fault occurs on bus1 or bus2 +If12=1/Zbus(1,1); + +//displaying the results +printf('\n Ybus='); +disp(Ybus); + +printf('\n Zbus='); +disp(Zbus); + +printf('\nV1f= %0.4f pu',V1f); +printf('\nV2f= %0.4f pu',V2f); +printf('\nV3f= %0.4f pu',V3f); +printf('\nV4f= %0.1f pu\n',V4f); + +printf('\nFault current=-j%0.5f pu\n',abs(If)); + +printf('\nI13f=j%0.3f pu',abs(I13f)); +printf('\nI12f=j%0.3f pu',abs(I12f)); +printf('\nI14f=-j%0.3f pu',abs(I14f)); +printf('\nI24f=-j%0.3f pu',abs(I24f)); +printf('\nI23f=-j%0.3f pu\n',abs(I23f)); + +printf('\n Fault current for a fault on bus 1 (or bus 2)\n If=-j%0.6f pu\n\n',abs(If12));
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.6/result_example_9_6.txt b/Working_Examples/83/CH9/EX9.6/result_example_9_6.txt new file mode 100755 index 0000000..81e1467 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.6/result_example_9_6.txt @@ -0,0 +1,30 @@ + + + Ybus= + - 28.333333i 5.i 6.6666667i 10.i + 5.i - 28.333333i 10.i 6.6666667i + 6.6666667i 10.i - 16.666667i 0 + 10.i 6.6666667i 0 - 16.666667i + + Zbus= + 0.0903061i 0.0596939i 0.0719388i 0.0780612i + 0.0596939i 0.0903061i 0.0780612i 0.0719388i + 0.0719388i 0.0780612i 0.1356122i 0.0743878i + 0.0780612i 0.0719388i 0.0743878i 0.1356122i + +V1f= 0.4244 pu +V2f= 0.4695 pu +V3f= 0.4515 pu +V4f= 0.0 pu + +Fault current=-j7.37397 pu + +I13f=j0.181 pu +I12f=j0.226 pu +I14f=-j4.244 pu +I24f=-j3.130 pu +I23f=-j0.181 pu + + Fault current for a fault on bus 1 (or bus 2) + If=-j11.073446 pu + diff --git a/Working_Examples/83/CH9/EX9.7/example_9_7.sce b/Working_Examples/83/CH9/EX9.7/example_9_7.sce new file mode 100755 index 0000000..1fb5fd8 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.7/example_9_7.sce @@ -0,0 +1,17 @@ +//Chapter 9 +//Example 9.7 +//page 355 +//To evaluate Zbus using Current Injection method +clear;clc; + +disp("We can approach this problem using XCOS simulation") +disp("In this simulation"); +disp("1)For injecting unit current at bus1 keeping bus2 open circuit,we use a current source of 1 unit which is switched on from t=0 to t=2. During this period we can observe the voltage waveforms of V1 and V2 and compare with the results given in the textbook"); +disp("2)For injecting unit current at bus2 keeping bus1 open circuit,we use a current source of 1 unit which is switched on from t=4 to t=6. During this period we can observe the voltage waveforms of V1 and V2 and compare with the results given in the textbook"); + +Z11=7; +Z21=4; +Z12=Z21; +Z22=6; + +Zbus=[Z11 Z12;Z21 Z22] diff --git a/Working_Examples/83/CH9/EX9.7/example_9_7.xcos b/Working_Examples/83/CH9/EX9.7/example_9_7.xcos new file mode 100755 index 0000000..da80f2b --- /dev/null +++ b/Working_Examples/83/CH9/EX9.7/example_9_7.xcos @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><XcosDiagram background="-1" finalIntegrationTime="6.0" title="example_9_7"><!--Xcos - 1.0 - scilab-5.5.2 - 20160406 2040--><mxGraphModel as="model"><root><mxCell id="75289c83:1315698632f:-7fff"/><mxCell id="75289c83:1315698632f:-8000" parent="75289c83:1315698632f:-7fff"/><BasicBlock dependsOnU="1" id="75289c83:1315698632f:-7fde" interfaceFunctionName="Resistor" ordering="1" parent="75289c83:1315698632f:-8000" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="3"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="680.0" y="140.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f99" ordering="1" parent="75289c83:1315698632f:-7fde" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f9a" ordering="1" parent="75289c83:1315698632f:-7fde" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock dependsOnU="1" id="75289c83:1315698632f:-7fdb" interfaceFunctionName="Resistor" ordering="2" parent="75289c83:1315698632f:-8000" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="2"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="2.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="140.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f95" ordering="1" parent="75289c83:1315698632f:-7fdb" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f96" ordering="1" parent="75289c83:1315698632f:-7fdb" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock angle="270" dependsOnU="1" id="75289c83:1315698632f:-7fd8" interfaceFunctionName="Resistor" ordering="3" parent="75289c83:1315698632f:-8000" simulationFunctionName="resistor" simulationFunctionType="DEFAULT" style="Resistor;rotation=270;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value="4"/></ScilabString><ScilabDouble as="realParameters" height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Resistor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="R"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="610.0" y="200.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f9d" ordering="1" parent="75289c83:1315698632f:-7fd8" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f9e" ordering="1" parent="75289c83:1315698632f:-7fd8" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitInputPort><SplitBlock id="75289c83:1315698632f:-7fcf" ordering="4" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="627.0" y="157.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7fce" ordering="1" parent="75289c83:1315698632f:-7fcf" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7fcd" ordering="1" parent="75289c83:1315698632f:-7fcf" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7fcc" ordering="2" parent="75289c83:1315698632f:-7fcf" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="75289c83:1315698632f:-7fcb" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f95" target="75289c83:1315698632f:-7fce"><mxGeometry as="geometry" x="300.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7fca" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7fcd" target="75289c83:1315698632f:-7f9a"><mxGeometry as="geometry" x="300.0"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7fd0" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f9d" target="75289c83:1315698632f:-7fcc"><mxGeometry as="geometry" x="300.0"><mxPoint as="sourcePoint" x="630.0" y="226.0"/><mxPoint as="targetPoint" x="630.0" y="160.0"/></mxGeometry></ImplicitLink><BasicBlock angle="270" dependsOnT="1" id="75289c83:1315698632f:-7fbf" interfaceFunctionName="CCS" ordering="5" parent="75289c83:1315698632f:-8000" simulationFunctionName="CCS" simulationFunctionType="DEFAULT" style="CCS;rotation=270;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CCS"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="Iin"/><data column="0" line="1" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="100.0" y="220.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7fbe" ordering="1" parent="75289c83:1315698632f:-7fbf" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7fbd" ordering="1" parent="75289c83:1315698632f:-7fbf" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ExplicitInputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7fbc" ordering="2" parent="75289c83:1315698632f:-7fbf" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ImplicitInputPort><GroundBlock dependsOnU="1" id="75289c83:1315698632f:-7fb5" interfaceFunctionName="Ground" ordering="6" parent="75289c83:1315698632f:-8000" simulationFunctionName="Ground" simulationFunctionType="DEFAULT" style="Ground;flip=false;mirror=false"><ScilabString as="exprs" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="Ground"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="110.0" y="360.0"/></GroundBlock><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7fb4" ordering="1" parent="75289c83:1315698632f:-7fb5" style="ImplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="NORTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitInputPort><SplitBlock id="75289c83:1315698632f:-7fa5" ordering="7" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="127.0" y="297.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7fa4" ordering="1" parent="75289c83:1315698632f:-7fa5" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7fa3" ordering="1" parent="75289c83:1315698632f:-7fa5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7fa2" ordering="2" parent="75289c83:1315698632f:-7fa5" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="75289c83:1315698632f:-7fa1" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7fb4" target="75289c83:1315698632f:-7fa4"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7fa0" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7fa3" target="75289c83:1315698632f:-7fbc"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><BasicBlock blockType="h" id="75289c83:1315698632f:-7f8e" interfaceFunctionName="STEP_FUNCTION" ordering="8" parent="75289c83:1315698632f:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="2"/><data column="0" line="1" value="1"/><data column="0" line="2" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="1.0"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="2.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-78a8"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-78a8"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="108.57143300000001"/><data column="1" line="0" realPart="-70.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-78a4"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-78a4"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="100.00000299999999"/><data column="0" line="2" realPart="61.478395"/><data column="0" line="3" realPart="61.478395"/><data column="0" line="4" realPart="100.00000299999999"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-150.39289999999994"/><data column="0" line="2" realPart="-150.39289999999994"/><data column="0" line="3" realPart="-60.69677999999999"/><data column="0" line="4" realPart="-60.69677999999999"/><data column="0" line="5" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="124.57143300000001"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-60.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="20.0" y="290.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7e45" ordering="1" parent="75289c83:1315698632f:-7f8e" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ExplicitLink id="75289c83:1315698632f:-7f8b" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7e45" target="75289c83:1315698632f:-7fbd"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="64.0" y="310.0"/><mxPoint as="targetPoint" x="110.0" y="270.0"/><Array as="points" scilabClass="ScilabList"><mxPoint x="110.0" y="310.0"/></Array></mxGeometry></ExplicitLink><BasicBlock angle="270" dependsOnT="1" id="75289c83:1315698632f:-7f7e" interfaceFunctionName="CCS" ordering="9" parent="75289c83:1315698632f:-8000" simulationFunctionName="CCS" simulationFunctionType="DEFAULT" style="CCS;rotation=270;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="CCS"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="Iin"/><data column="0" line="1" value="p"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="n"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="160.0" y="220.0"/></BasicBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f7d" ordering="1" parent="75289c83:1315698632f:-7f7e" style="ImplicitOutputPort;align=center;verticalAlign=top;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="-8.0"/></ImplicitOutputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f7c" ordering="1" parent="75289c83:1315698632f:-7f7e" style="ExplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="40.0"/></ExplicitInputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f7b" ordering="2" parent="75289c83:1315698632f:-7f7e" style="ImplicitInputPort;align=center;verticalAlign=bottom;spacing=10;rotation=270;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="40.0"/></ImplicitInputPort><SplitBlock id="75289c83:1315698632f:-7f77" ordering="10" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="187.0" y="297.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7f76" ordering="1" parent="75289c83:1315698632f:-7f77" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7f75" ordering="1" parent="75289c83:1315698632f:-7f77" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7f74" ordering="2" parent="75289c83:1315698632f:-7f77" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="75289c83:1315698632f:-7f73" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7fa2" target="75289c83:1315698632f:-7f76"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7f78" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f74" target="75289c83:1315698632f:-7f7b"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="190.0" y="264.0"/><mxPoint as="targetPoint" x="190.0" y="300.0"/></mxGeometry></ImplicitLink><BasicBlock angle="180" blockType="h" id="75289c83:1315698632f:-7f60" interfaceFunctionName="STEP_FUNCTION" ordering="11" parent="75289c83:1315698632f:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="STEP_FUNCTION;rotation=180;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="STEP_FUNCTION"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-4"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="14.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=" "/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="3" width="1"><data column="0" line="0" value="4"/><data column="0" line="1" value="0"/><data column="0" line="2" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="3.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"STEP",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="step_func"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="true"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-789e"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="STEP"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-789e"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="108.57143300000001"/><data column="1" line="0" realPart="-70.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"OUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="E"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="ExplicitInputPort;align=left;verticalAlign=middle;spacing=10.0;rotation=0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-2.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="c"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-789a"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="OUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-789a"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="100.00000299999999"/><data column="0" line="2" realPart="61.478395"/><data column="0" line="3" realPart="61.478395"/><data column="0" line="4" realPart="100.00000299999999"/><data column="0" line="5" realPart="60.0"/></ScilabDouble><ScilabDouble height="6" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-150.39289999999994"/><data column="0" line="2" realPart="-150.39289999999994"/><data column="0" line="3" realPart="-60.69677999999999"/><data column="0" line="4" realPart="-60.69677999999999"/><data column="0" line="5" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="84.0"/><data column="0" line="1" realPart="124.57143300000001"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-20.0"/><data column="0" line="1" realPart="-60.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="220.0" y="330.0"/></BasicBlock><ExplicitOutputPort dataColumns="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7de3" ordering="1" parent="75289c83:1315698632f:-7f60" style="ExplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ExplicitOutputPort><ExplicitLink id="75289c83:1315698632f:-7f5e" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7de3" target="75289c83:1315698632f:-7f7c"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="215.99999999999997" y="350.0"/><mxPoint as="targetPoint" x="165.68047337278108" y="266.2721893491124"/><Array as="points" scilabClass="ScilabList"><mxPoint x="170.0" y="350.0"/></Array></mxGeometry></ExplicitLink><VoltageSensorBlock dependsOnU="1" id="75289c83:1315698632f:-7f51" interfaceFunctionName="VoltageSensor" ordering="12" parent="75289c83:1315698632f:-8000" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=0;mirror=true;flip=false"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="410.0" y="210.0"/></VoltageSensorBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f50" ordering="1" parent="75289c83:1315698632f:-7f51" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f4f" ordering="2" parent="75289c83:1315698632f:-7f51" style="ExplicitOutputPort;align=left;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7f4e" ordering="1" parent="75289c83:1315698632f:-7f51" style="ImplicitInputPort;align=right;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ImplicitInputPort><BasicBlock angle="90" dependsOnU="1" id="75289c83:1315698632f:-7eb8" interfaceFunctionName="CMSCOPE" ordering="13" parent="75289c83:1315698632f:-8000" simulationFunctionName="cmscope" simulationFunctionType="C_OR_FORTRAN" style="CMSCOPE;rotation=90;flip=false;mirror=false"><ScilabString as="exprs" height="11" width="1"><data column="0" line="0" value="1 1"/><data column="0" line="1" value="1 3 5 7 9 11 13 15"/><data column="0" line="2" value="-1"/><data column="0" line="3" value="[]"/><data column="0" line="4" value="[]"/><data column="0" line="5" value="0 0"/><data column="0" line="6" value="9 9"/><data column="0" line="7" value="6 6"/><data column="0" line="8" value="2"/><data column="0" line="9" value="0"/><data column="0" line="10" value="V1 and V2"/></ScilabString><ScilabDouble as="realParameters" height="7" width="1"><data column="0" line="0" realPart="0.0"/><data column="0" line="1" realPart="6.0"/><data column="0" line="2" realPart="6.0"/><data column="0" line="3" realPart="0.0"/><data column="0" line="4" realPart="9.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="9.0"/></ScilabDouble><ScilabDouble as="integerParameters" height="12" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="2.0"/><data column="0" line="2" realPart="2.0"/><data column="0" line="3" realPart="-1.0"/><data column="0" line="4" realPart="-1.0"/><data column="0" line="5" realPart="-1.0"/><data column="0" line="6" realPart="-1.0"/><data column="0" line="7" realPart="1.0"/><data column="0" line="8" realPart="1.0"/><data column="0" line="9" realPart="1.0"/><data column="0" line="10" realPart="3.0"/><data column="0" line="11" realPart="0.0"/></ScilabDouble><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="340.0" y="380.0"/></BasicBlock><ControlPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7d7d" ordering="1" parent="75289c83:1315698632f:-7eb8" style="ControlPort;align=right;verticalAlign=middle;spacing=10;rotation=180;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ControlPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7d7f" ordering="1" parent="75289c83:1315698632f:-7eb8" style="ExplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="6.0" y="-8.0"/></ExplicitInputPort><ExplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7d7e" ordering="2" parent="75289c83:1315698632f:-7eb8" style="ExplicitInputPort;align=center;verticalAlign=top;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="26.0" y="-8.0"/></ExplicitInputPort><ExplicitLink id="75289c83:1315698632f:-7eb0" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f4f" target="75289c83:1315698632f:-7d7e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="406.0" y="229.99999999999997"/><mxPoint as="targetPoint" x="370.3703703703703" y="377.77777777777777"/><Array as="points" scilabClass="ScilabList"><mxPoint x="370.0" y="230.0"/></Array></mxGeometry></ExplicitLink><VoltageSensorBlock angle="180" dependsOnU="1" id="75289c83:1315698632f:-7ea6" interfaceFunctionName="VoltageSensor" ordering="14" parent="75289c83:1315698632f:-8000" simulationFunctionName="VoltageSensor" simulationFunctionType="DEFAULT" style="VoltageSensor;rotation=180;flip=true;mirror=true"><ScilabDouble as="exprs" height="0" width="0"/><ScilabDouble as="realParameters" height="0" width="0"/><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabTList"><ScilabString height="1" width="5"><data column="0" line="0" value="modelica"/><data column="1" line="0" value="model"/><data column="2" line="0" value="inputs"/><data column="3" line="0" value="outputs"/><data column="4" line="0" value="parameters"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="VoltageSensor"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="p"/></ScilabString><ScilabString height="2" width="1"><data column="0" line="0" value="n"/><data column="0" line="1" value="v"/></ScilabString><Array scilabClass="ScilabList"><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array></Array><mxGeometry as="geometry" height="40.0" width="40.0" x="280.0" y="220.0"/></VoltageSensorBlock><ImplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7ea5" ordering="1" parent="75289c83:1315698632f:-7ea6" style="ImplicitOutputPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><Orientation as="orientation" value="SOUTH"/><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></ImplicitOutputPort><ExplicitOutputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7ea4" ordering="2" parent="75289c83:1315698632f:-7ea6" style="ExplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="40.0" y="16.0"/></ExplicitOutputPort><ImplicitInputPort dataColumns="1" dataLines="1" dataType="REAL_MATRIX" id="75289c83:1315698632f:-7ea3" ordering="1" parent="75289c83:1315698632f:-7ea6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="16.0"/></ImplicitInputPort><BasicBlock blockType="h" id="75289c83:1315698632f:-7e77" interfaceFunctionName="CLOCK_c" ordering="15" parent="75289c83:1315698632f:-8000" simulationFunctionName="csuper" simulationFunctionType="DEFAULT" style="CLOCK_c;flip=false;mirror=false"><ScilabDouble as="exprs" height="0" width="0"/><Array as="realParameters" scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="diagram"/><data column="1" line="0" value="props"/><data column="2" line="0" value="objs"/><data column="3" line="0" value="version"/><data column="4" line="0" value="contrib"/></ScilabString><Array scilabClass="ScilabTList"><ScilabString height="1" width="11"><data column="0" line="0" value="params"/><data column="1" line="0" value="wpar"/><data column="2" line="0" value="title"/><data column="3" line="0" value="tol"/><data column="4" line="0" value="tf"/><data column="5" line="0" value="context"/><data column="6" line="0" value="void1"/><data column="7" line="0" value="options"/><data column="8" line="0" value="void2"/><data column="9" line="0" value="void3"/><data column="10" line="0" value="doc"/></ScilabString><ScilabDouble height="1" width="6"><data column="0" line="0" realPart="600.0"/><data column="1" line="0" realPart="450.0"/><data column="2" line="0" realPart="0.0"/><data column="3" line="0" realPart="0.0"/><data column="4" line="0" realPart="600.0"/><data column="5" line="0" realPart="450.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="Untitled"/></ScilabString><ScilabDouble height="7" width="1"><data column="0" line="0" realPart="1.0E-6"/><data column="0" line="1" realPart="1.0E-6"/><data column="0" line="2" realPart="1.0E-10"/><data column="0" line="3" realPart="100001.0"/><data column="0" line="4" realPart="0.0"/><data column="0" line="5" realPart="0.0"/><data column="0" line="6" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="100000.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabTList"><ScilabString height="1" width="6"><data column="0" line="0" value="scsopt"/><data column="1" line="0" value="3D"/><data column="2" line="0" value="Background"/><data column="3" line="0" value="Link"/><data column="4" line="0" value="ID"/><data column="5" line="0" value="Cmap"/></ScilabString><Array scilabClass="ScilabList"><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="33.0"/></ScilabDouble></Array><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="8.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="5.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="4.0"/><data column="1" line="0" realPart="1.0"/></ScilabDouble></Array><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="0.8"/><data column="1" line="0" realPart="0.8"/><data column="2" line="0" realPart="0.8"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/></Array><Array scilabClass="ScilabList"><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="119.0"/><data column="1" line="0" realPart="-150.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="20.0"/><data column="1" line="0" realPart="20.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="1"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="5.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKOUT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="output"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="1.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-7894"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKOUT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-7894"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="-40.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="40.0"/><data column="1" line="0" realPart="40.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabString height="2" width="1"><data column="0" line="0" value="0.005"/><data column="0" line="1" value="0"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="6.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"EVTDLY_c",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="evtdly4"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble></Array><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="0.005"/><data column="0" line="1" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-7892"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="EVTDLY_c"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-7892"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="5"><data column="0" line="0" value="Block"/><data column="1" line="0" value="graphics"/><data column="2" line="0" value="model"/><data column="3" line="0" value="gui"/><data column="4" line="0" value="doc"/></ScilabString><Array scilabClass="ScilabMList"><ScilabString height="1" width="19"><data column="0" line="0" value="graphics"/><data column="1" line="0" value="orig"/><data column="2" line="0" value="sz"/><data column="3" line="0" value="flip"/><data column="4" line="0" value="theta"/><data column="5" line="0" value="exprs"/><data column="6" line="0" value="pin"/><data column="7" line="0" value="pout"/><data column="8" line="0" value="pein"/><data column="9" line="0" value="peout"/><data column="10" line="0" value="gr_i"/><data column="11" line="0" value="id"/><data column="12" line="0" value="in_implicit"/><data column="13" line="0" value="out_implicit"/><data column="14" line="0" value="in_style"/><data column="15" line="0" value="out_style"/><data column="16" line="0" value="in_label"/><data column="17" line="0" value="out_label"/><data column="18" line="0" value="style"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="123.3773266666667"/><data column="1" line="0" realPart="-169.33333333333331"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="7.0"/><data column="1" line="0" realPart="7.0"/></ScilabDouble><ScilabBoolean height="1" width="1"><data column="0" line="0" value="true"/></ScilabBoolean><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="4.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="5.0"/><data column="0" line="1" realPart="6.0"/></ScilabDouble><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="xstringb(orig(1),orig(2),"CLKSPLIT_f",sz(1),sz(2));"/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="8.0"/></ScilabDouble></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="24"><data column="0" line="0" value="model"/><data column="1" line="0" value="sim"/><data column="2" line="0" value="in"/><data column="3" line="0" value="in2"/><data column="4" line="0" value="intyp"/><data column="5" line="0" value="out"/><data column="6" line="0" value="out2"/><data column="7" line="0" value="outtyp"/><data column="8" line="0" value="evtin"/><data column="9" line="0" value="evtout"/><data column="10" line="0" value="state"/><data column="11" line="0" value="dstate"/><data column="12" line="0" value="odstate"/><data column="13" line="0" value="rpar"/><data column="14" line="0" value="ipar"/><data column="15" line="0" value="opar"/><data column="16" line="0" value="blocktype"/><data column="17" line="0" value="firing"/><data column="18" line="0" value="dep_ut"/><data column="19" line="0" value="label"/><data column="20" line="0" value="nzcross"/><data column="21" line="0" value="nmode"/><data column="22" line="0" value="equations"/><data column="23" line="0" value="uid"/></ScilabString><ScilabString height="1" width="1"><data column="0" line="0" value="split"/></ScilabString><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabDouble height="0" width="0"/><ScilabDouble height="0" width="0"/><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="d"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-1.0"/><data column="0" line="1" realPart="-1.0"/></ScilabDouble><ScilabBoolean height="1" width="2"><data column="0" line="0" value="false"/><data column="1" line="0" value="false"/></ScilabBoolean><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array scilabClass="ScilabList"/><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-788f"/></ScilabString></Array><ScilabString height="1" width="1"><data column="0" line="0" value="CLKSPLIT_f"/></ScilabString><Array scilabClass="ScilabList"><ScilabString height="1" width="1"><data column="0" line="0" value="-3e07f539:168315200c0:-788f"/></ScilabString></Array></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="60.0"/><data column="0" line="1" realPart="100.0"/><data column="0" line="2" realPart="133.8773266666667"/></ScilabDouble><ScilabDouble height="3" width="1"><data column="0" line="0" realPart="-44.0"/><data column="0" line="1" realPart="-180.0"/><data column="0" line="2" realPart="-158.33333333333331"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="132.71066000000005"/><data column="0" line="1" realPart="149.0"/></ScilabDouble><ScilabDouble height="2" width="1"><data column="0" line="0" realPart="-173.33333333333331"/><data column="0" line="1" realPart="-126.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="1.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array><Array scilabClass="ScilabMList"><ScilabString height="1" width="8"><data column="0" line="0" value="Link"/><data column="1" line="0" value="xx"/><data column="2" line="0" value="yy"/><data column="3" line="0" value="id"/><data column="4" line="0" value="thick"/><data column="5" line="0" value="ct"/><data column="6" line="0" value="from"/><data column="7" line="0" value="to"/></ScilabString><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="135.04399333333336"/><data column="0" line="1" realPart="140.70999999999998"/><data column="0" line="2" realPart="100.0"/><data column="0" line="3" realPart="60.0"/></ScilabDouble><ScilabDouble height="4" width="1"><data column="0" line="0" realPart="-173.33333333333331"/><data column="0" line="1" realPart="-50.0"/><data column="0" line="2" realPart="-50.0"/><data column="0" line="3" realPart="4.0"/></ScilabDouble><ScilabString height="1" width="1"><data column="0" line="0" value="drawlink"/></ScilabString><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="0.0"/><data column="1" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="2"><data column="0" line="0" realPart="5.0"/><data column="1" line="0" realPart="-1.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="3.0"/><data column="1" line="0" realPart="2.0"/><data column="2" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble height="1" width="3"><data column="0" line="0" realPart="2.0"/><data column="1" line="0" realPart="1.0"/><data column="2" line="0" realPart="1.0"/></ScilabDouble></Array></Array><ScilabString height="1" width="1"><data column="0" line="0" value=""/></ScilabString><Array scilabClass="ScilabList"/></Array><ScilabDouble as="integerParameters" height="0" width="0"/><Array as="objectsParameters" scilabClass="ScilabList"/><ScilabDouble as="nbZerosCrossing" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><ScilabDouble as="nmode" height="1" width="1"><data column="0" line="0" realPart="0.0"/></ScilabDouble><Array as="oDState" scilabClass="ScilabList"/><Array as="equations" scilabClass="ScilabList"/><mxGeometry as="geometry" height="40.0" width="40.0" x="410.0" y="320.0"/></BasicBlock><CommandPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7deb" ordering="1" parent="75289c83:1315698632f:-7e77" style="CommandPort;align=center;verticalAlign=bottom;spacing=10;rotation=90;flip=false;mirror=false"><mxGeometry as="geometry" height="8.0" width="8.0" x="16.0" y="40.0"/></CommandPort><CommandControlLink id="75289c83:1315698632f:-7e72" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7deb" target="75289c83:1315698632f:-7d7d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="430.0" y="364.0"/><mxPoint as="targetPoint" x="388.88888888888886" y="398.1481481481481"/><Array as="points" scilabClass="ScilabList"><mxPoint x="430.0" y="400.0"/></Array></mxGeometry></CommandControlLink><SplitBlock id="75289c83:1315698632f:-7e3e" ordering="16" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="227.0" y="67.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e3d" ordering="1" parent="75289c83:1315698632f:-7e3e" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e3c" ordering="1" parent="75289c83:1315698632f:-7e3e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e3b" ordering="2" parent="75289c83:1315698632f:-7e3e" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="75289c83:1315698632f:-7e3a" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f99" target="75289c83:1315698632f:-7e3d"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="790.0" y="160.0"/><mxPoint x="790.0" y="70.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7e3f" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7e3b" target="75289c83:1315698632f:-7ea3"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="324.0" y="240.00000000000003"/><mxPoint as="targetPoint" x="351.85185185185185" y="74.07407407407408"/><Array as="points" scilabClass="ScilabList"><mxPoint x="230.0" y="240.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7e2d" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7e3c" target="75289c83:1315698632f:-7fbe"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="120.0" y="70.0"/><mxPoint x="120.0" y="70.0"/></Array></mxGeometry></ImplicitLink><SplitBlock id="75289c83:1315698632f:-7e20" ordering="17" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="297.0" y="297.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e1f" ordering="1" parent="75289c83:1315698632f:-7e20" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e1e" ordering="1" parent="75289c83:1315698632f:-7e20" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e1d" ordering="2" parent="75289c83:1315698632f:-7e20" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="75289c83:1315698632f:-7e1c" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f75" target="75289c83:1315698632f:-7e1f"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="250.0" y="300.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7e21" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7ea5" target="75289c83:1315698632f:-7e1d"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="300.0" y="264.0"/><mxPoint as="targetPoint" x="296.2962962962963" y="296.2962962962963"/></mxGeometry></ImplicitLink><ExplicitLink id="75289c83:1315698632f:-7e1a" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7ea4" target="75289c83:1315698632f:-7d7f"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="324.0" y="240.00000000000003"/><mxPoint as="targetPoint" x="351.85185185185185" y="370.3703703703703"/><Array as="points" scilabClass="ScilabList"><mxPoint x="350.0" y="240.0"/></Array></mxGeometry></ExplicitLink><SplitBlock id="75289c83:1315698632f:-7e0d" ordering="18" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="427.0" y="297.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e0c" ordering="1" parent="75289c83:1315698632f:-7e0d" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e0b" ordering="1" parent="75289c83:1315698632f:-7e0d" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7e0a" ordering="2" parent="75289c83:1315698632f:-7e0d" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="75289c83:1315698632f:-7e09" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7e1e" target="75289c83:1315698632f:-7e0c"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7e08" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7e0b" target="75289c83:1315698632f:-7f9e"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="490.0" y="300.0"/><mxPoint x="630.0" y="300.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7e0e" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f50" target="75289c83:1315698632f:-7e0a"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="430.0" y="253.99999999999997"/><mxPoint as="targetPoint" x="435.18518518518516" y="296.2962962962963"/></mxGeometry></ImplicitLink><SplitBlock id="75289c83:1315698632f:-7df6" ordering="19" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="SPLIT_f;flip=false;mirror=false"><mxGeometry as="geometry" height="7.0" width="7.0" x="497.0" y="157.0"/></SplitBlock><ImplicitInputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7df5" ordering="1" parent="75289c83:1315698632f:-7df6" style="ImplicitInputPort;align=left;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="-8.0" y="-4.0"/></ImplicitInputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7df4" ordering="1" parent="75289c83:1315698632f:-7df6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="-4.0"/></ImplicitOutputPort><ImplicitOutputPort dataType="UNKNOW_TYPE" id="75289c83:1315698632f:-7df3" ordering="2" parent="75289c83:1315698632f:-7df6" style="ImplicitOutputPort;align=right;verticalAlign=middle;spacing=10;rotation=0;flip=false;mirror=false" visible="0"><mxGeometry as="geometry" height="8.0" width="8.0" x="7.0" y="6.0"/></ImplicitOutputPort><ImplicitLink id="75289c83:1315698632f:-7df2" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7f7d" target="75289c83:1315698632f:-7df5"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"><mxPoint x="180.0" y="160.0"/><mxPoint x="430.0" y="160.0"/></Array></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7df1" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7df4" target="75289c83:1315698632f:-7f96"><mxGeometry as="geometry"><Array as="points" scilabClass="ScilabList"/></mxGeometry></ImplicitLink><ImplicitLink id="75289c83:1315698632f:-7df7" parent="75289c83:1315698632f:-8000" source="75289c83:1315698632f:-7df3" target="75289c83:1315698632f:-7f4e"><mxGeometry as="geometry"><mxPoint as="sourcePoint" x="453.99999999999994" y="230.00000000000003"/><mxPoint as="targetPoint" x="500.0" y="162.33766233766232"/><Array as="points" scilabClass="ScilabList"><mxPoint x="500.0" y="230.0"/></Array></mxGeometry></ImplicitLink><TextBlock id="75289c83:1315698632f:-7d9c" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#DB1717" value="Reference Bus"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Reference Bus"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Reference Bus"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="520.0" y="290.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d99" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="I1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="I1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="I1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="60.0" y="220.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d96" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="I2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="I2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="I2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="190.0" y="220.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d93" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="4"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="4"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="4"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="640.0" y="200.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d90" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="540.0" y="110.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d8c" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="3"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="3"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="3"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="680.0" y="110.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d87" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="V2"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="V2"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="V2"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="410.0" y="180.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d84" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false" value="V1"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="V1"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="V1"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="280.0" y="190.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d7a" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=12;flip=false;mirror=false" value=""><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value=""/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value=""/></ScilabString><mxGeometry as="geometry" height="40.0" width="150.0" x="710.0" y="400.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d76" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=14;flip=false;mirror=false;fontColor=#DB1717" value="Current Injection Technique"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Current Injection Technique"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Current Injection Technique"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="440.0" y="30.0"/></TextBlock><TextBlock id="75289c83:1315698632f:-7d71" parent="75289c83:1315698632f:-8000" simulationFunctionType="DEFAULT" style="TEXT_f;fontStyle=1;fontSize=12;flip=false;mirror=false;fontColor=#4CA8E1" value="Current source I1 is ON from t=0 to t=2<br>Current source I2 is ON from t=4 to t=6<br>"><ScilabString as="exprs" height="1" width="3"><data column="0" line="0" value="Current source I1 is ON from t=0 to t=2<br>Current source I2 is ON from t=4 to t=6<br>"/><data column="1" line="0" value="2"/><data column="2" line="0" value="1"/></ScilabString><ScilabString as="realParameters" height="1" width="1"><data column="0" line="0" value="Current source I1 is ON from t=0 to t=2<br>Current source I2 is ON from t=4 to t=6<br>"/></ScilabString><mxGeometry as="geometry" height="40.0" width="40.0" x="600.0" y="350.0"/></TextBlock></root></mxGraphModel><mxCell as="defaultParent" id="75289c83:1315698632f:-8000" parent="75289c83:1315698632f:-7fff"/></XcosDiagram>
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.7/result_example_9_7.txt b/Working_Examples/83/CH9/EX9.7/result_example_9_7.txt new file mode 100755 index 0000000..71ab7b4 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.7/result_example_9_7.txt @@ -0,0 +1,18 @@ + + + We can approach this problem using XCOS simulation + + In this simulation + + 1)For injecting unit current at bus1 keeping bus2 open circuit,we use a current source of 1 unit which is + switched on from t=0 to t=2. During this period we can observe the voltage waveforms of V1 and V2 and + compare with the results given in the textbook + + 2)For injecting unit current at bus2 keeping bus1 open circuit,we use a current source of 1 unit which is + switched on from t=4 to t=6. During this period we can observe the voltage waveforms of V1 and V2 and + compare with the results given in the textbook + Zbus = + + 7. 4. + 4. 6. + diff --git a/Working_Examples/83/CH9/EX9.7/xcos_result_example_9_7.jpeg b/Working_Examples/83/CH9/EX9.7/xcos_result_example_9_7.jpeg Binary files differnew file mode 100755 index 0000000..fb74c3a --- /dev/null +++ b/Working_Examples/83/CH9/EX9.7/xcos_result_example_9_7.jpeg diff --git a/Working_Examples/83/CH9/EX9.8/example_9_8.sce b/Working_Examples/83/CH9/EX9.8/example_9_8.sce new file mode 100755 index 0000000..c4b0ef7 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.8/example_9_8.sce @@ -0,0 +1,32 @@ +//Chapter 9 +//Example 9.8 +//page 360 +//To build Zbus matrix using Zbus building algorithm +clear;clc; + +disp("Let us go on modifying Zbus by including nodes and the elements connected to it one by one as given in the textbook") + +//step-1 type1 modification +Zbus=[0.25]; +printf('\nstep-1 type1 modification\nZbus=');disp(Zbus); + +//step-2 type2 modification +Zbus=[Zbus,0.25;0.25,0.25+0.1]; +printf('\nstep-2 type2 modification\nZbus=');disp(Zbus); + +//step-3 type2 modification +Zbus=[Zbus [0.25;0.25]; 0.25 0.25 0.35]; +printf('\nstep-3 type2 modification\nZbus=');disp(Zbus); + +//step-4 type3 modification +Zbus=Zbus-(1/(Zbus(3,3)+0.25))*[Zbus(1:3,2:2)]*[Zbus(2:2,1:3)]; +printf('\nstep-4 type3 modification\nZbus=');disp(Zbus); + +printf('This is the final Zbus matrix after including all the elements\n'); +//step-5 type4 modification +Zbus=Zbus-(1/(0.1+Zbus(2,2)+Zbus(3,3)-2*Zbus(2,3)))*[Zbus(1:3,2:2)-Zbus(1:3,3:3)]*[Zbus(2:2,1:3)-Zbus(3:3,1:3)]; +printf('\nstep-5 type4 modification\nZbus=');disp(Zbus); + +disp("opening a line between 2-3 is equivalent to connecting (-0.1) between bus3 bus2") +Zbus=Zbus-(1/(-0.1+Zbus(2,2)+Zbus(3,3)-2*Zbus(2,3)))*[Zbus(1:3,2:2)-Zbus(1:3,3:3)]*[Zbus(2:2,1:3)-Zbus(3:3,1:3)]; +printf('Zbus=');disp(Zbus);printf('(same as in step 4)');
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.8/result_example_9_8.txt b/Working_Examples/83/CH9/EX9.8/result_example_9_8.txt new file mode 100755 index 0000000..a2c2e51 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.8/result_example_9_8.txt @@ -0,0 +1,39 @@ + + Let us go on modifying Zbus by including nodes and the elements connected to it one by + one as given in the textbook + +step-1 type1 modification +Zbus= + 0.25 + +step-2 type2 modification +Zbus= + 0.25 0.25 + 0.25 0.35 + +step-3 type2 modification +Zbus= + 0.25 0.25 0.25 + 0.25 0.35 0.25 + 0.25 0.25 0.35 + +step-4 type3 modification +Zbus= + 0.1458333 0.1041667 0.1458333 + 0.1041667 0.1458333 0.1041667 + 0.1458333 0.1041667 0.2458333 +This is the final Zbus matrix after including all the elements + +step-5 type4 modification +Zbus= + 0.1397059 0.1102941 0.125 + 0.1102941 0.1397059 0.125 + 0.125 0.125 0.175 + + opening a line between 2-3 is equivalent to connecting (-0.1) between bus3 bus2 +Zbus= + 0.1458333 0.1041667 0.1458333 + 0.1041667 0.1458333 0.1041667 + 0.1458333 0.1041667 0.2458333 +(same as in step 4) + diff --git a/Working_Examples/83/CH9/EX9.9/example_9_9.sce b/Working_Examples/83/CH9/EX9.9/example_9_9.sce new file mode 100755 index 0000000..dca2934 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.9/example_9_9.sce @@ -0,0 +1,36 @@ +//Chapter 9 +//Example 9.9 +//page 362 +//To find postfault currents and voltages +clear;clc; + +disp("The Thevenin passive network for this system is drawn in Example_9_8 (or fig 9.28 in the textbook)"); +disp("Using the Zbus matrix from the results of example_9_8,we can calculate post fault currents and voltages"); +Zbus=%i*[0.1397059 0.1102941 0.125;0.1102941 0.1397059 0.125;0.125 0.125 0.175] + +//to find fault current +V30=1;V10=1;V20=1; +If=(V30/(Zbus(3,3)+0)); +printf('\nIf=-j%0.2f pu\n',abs(If)); + + +//to find postfault voltages +V1f=V10-(Zbus(1,3)/Zbus(3,3)); +V2f=V20-(Zbus(2,3)/Zbus(3,3)); +printf('\nV1f=%0.3f',V1f); +printf('\nV2f=%0.3f',V2f); + +//to find fault currents in the TL +I12f=(V1f-V2f)/(%i*0.1); +I13f=(V1f-0)/(%i*0.1); +I23f=(V2f-0)/(%i*0.1); +printf('\n\nI12f=%d',I12f); +printf('\nI13f=-j%0.2f',abs(I13f)); +printf('\nI23f=-j%0.2f',abs(I23f)); + +//to find generator currents during faults +Eg1=1;Eg2=1; +Ig1f=(Eg1-V1f)/(0.2*%i+0.05*%i); +Ig2f=(Eg2-V2f)/(0.2*%i+0.05*%i); +printf('\n\nIg1f=-j%0.2f',abs(Ig1f)); +printf('\nIg2f=-j%0.2f\n\n',abs(Ig2f));
\ No newline at end of file diff --git a/Working_Examples/83/CH9/EX9.9/result_example_9_9.txt b/Working_Examples/83/CH9/EX9.9/result_example_9_9.txt new file mode 100755 index 0000000..b051937 --- /dev/null +++ b/Working_Examples/83/CH9/EX9.9/result_example_9_9.txt @@ -0,0 +1,24 @@ + + + The Thevenin passive network for this system is drawn in Example_9_8 (or fig 9.28 in the textbook) + + Using the Zbus matrix from the results of example_9_8,we can calculate post fault currents and voltages + Zbus = + + 0.1397059i 0.1102941i 0.125i + 0.1102941i 0.1397059i 0.125i + 0.125i 0.125i 0.175i + +If=-j5.71 pu + +V1f=0.286 +V2f=0.286 + +I12f=0 +I13f=-j2.86 +I23f=-j2.86 + +Ig1f=-j2.86 +Ig2f=-j2.86 + + |